Closed
Bug 1153731
Opened 10 years ago
Closed 10 years ago
Integrate MP3TrackDemuxer into MP4Reader
Categories
(Core :: Audio/Video, defect)
Core
Audio/Video
Tracking
()
RESOLVED
WONTFIX
| Tracking | Status | |
|---|---|---|
| firefox40 | --- | affected |
People
(Reporter: kinetik, Assigned: kinetik)
References
Details
Attachments
(6 obsolete files)
This bug is for the work that'll integrate Eugene's new MP3TrackDemuxer (in bug 1093815) into the existing MP4Reader framework and enable it on Android L/5.x.
| Assignee | ||
Comment 1•10 years ago
|
||
Pretty hacky so far, need to sync up with jya on his refactoring of the MP4Reader stuff. So far this sets up everything necessary, but fails to parse the file I tested with (https://ia902508.us.archive.org/5/items/testmp3testfile/mpthreetest.mp3).
| Assignee | ||
Comment 2•10 years ago
|
||
Rebased on top of latest code and Eugene's updated patches in bug 1093815. With media.mp3.enabled = true (to force the new MP3 demuxer to be used) and, media.fragmented-mp4.exposed = true and media.fragmented-mp4.ffmpeg.enabled = true (on Linux) to enable a PlatformDecoderModule that supports MP3, initial playback works. Replaying/seeking doesn't work yet.
Attachment #8592068 -
Attachment is obsolete: true
Comment 3•10 years ago
|
||
I've split the patch into three parts: the MP3TrackDemuxer modification went into my patch in bug 1093815, I moved MP3LegacyDemuxer into its own file and the rest of the integration work is in the third patch.
Comment 4•10 years ago
|
||
Comment 5•10 years ago
|
||
Rebased on new MP4Demuxer interface.
Attachment #8596827 -
Attachment is obsolete: true
Comment 6•10 years ago
|
||
Rebased on new MP4Demuxer interface.
Attachment #8596828 -
Attachment is obsolete: true
Comment 7•10 years ago
|
||
Comment on attachment 8603051 [details] [diff] [review]
0005-Bug-1153731-Integrate-MP3TrackDemuxer-into-MP4Reader.patch
Review of attachment 8603051 [details] [diff] [review]:
-----------------------------------------------------------------
This is great...
Just one thing: this entire code path (MP4Reader) is about to disappear as we move to the new media architecture (bug 1148292)..
All we need is a MP3Demuxer that supports the MediaDataDemuxer API (bug 1154164). This is very similar to what this patch does
With just a MP3Demuxer that implement MediaDataDemuxer API ; The MP3 MediaDecoder would then just become something like:
nsRefPtr<MediaFormatDecoder> reader = new MediaFormatDecoder(new MP3Demuxer(GetResource()))
return new MediaDecoderStateMachine(this, reader);
(like what bug 1156708 does to replace the MP4Decoder)
Happy to discuss with you on the best way to proceed.
| Assignee | ||
Comment 8•10 years ago
|
||
(In reply to Jean-Yves Avenard [:jya] from comment #7)
> Just one thing: this entire code path (MP4Reader) is about to disappear as
> we move to the new media architecture (bug 1148292)..
Yeah, that's why aspects of the integration are pretty temporary/hacky in these patches, since I was either going to rebase on top of your refactoring or check in these changes with an eye to removing them shortly, depending on which order things landed.
| Assignee | ||
Updated•10 years ago
|
Attachment #8595766 -
Attachment is obsolete: true
| Assignee | ||
Updated•10 years ago
|
Attachment #8603050 -
Attachment is obsolete: true
| Assignee | ||
Updated•10 years ago
|
Attachment #8603051 -
Attachment is obsolete: true
| Assignee | ||
Comment 9•10 years ago
|
||
Marking these patches obsolete as we're in the process of rebasing the changes onto the new interfaces introduced with MediaFormatReader. Changes are in Eugen's git repo for now: https://github.com/eamsen/gecko-dev/commits/mp3-demuxer-rebase
Comment 10•10 years ago
|
||
I'm going to spin off the integration into a new bug, so that we have the following dependencies
Implementation Integration
bug 1093815 -> bug 1153731
|
v
bug 1166779 -> bug 1168374
| Assignee | ||
Comment 11•10 years ago
|
||
Unless I'm misunderstanding something, this bug is replaced by bug 1168374, since we're not planning to integrate into the old MP4Reader any longer.
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•