Closed
Bug 766395
Opened 13 years ago
Closed 12 years ago
Video decoding using libstagefright on otoro device does not use hardware decoder on B2G
Categories
(Core :: Audio/Video, defect, P1)
Tracking
()
RESOLVED
FIXED
mozilla17
People
(Reporter: cajbir, Assigned: cajbir)
References
(Blocks 1 open bug)
Details
Attachments
(2 files, 2 obsolete files)
7.62 KB,
text/plain
|
Details | |
4.68 KB,
patch
|
eflores
:
review+
|
Details | Diff | Splinter Review |
When playing H.264 videos on an otoro device with B2G the software libstagefright decoder is used resulting in poor performance and basic profile support only.
Assignee | ||
Updated•13 years ago
|
blocking-basecamp: --- → ?
blocking-kilimanjaro: --- → ?
Assignee | ||
Comment 1•13 years ago
|
||
Device is missing the following shared libraries to get hardware decoding working:
libOmxH264Dec.so
libOmxAacDec.so
libdivxdrmdecrypt.so
libmm-adspsvc.so
Assignee | ||
Updated•13 years ago
|
Assignee: nobody → eflores
h.264 now working on otoro. Very slow, however, and some videos don't work. Will have to investigate further.
Attachment #635154 -
Flags: review?(chris.double)
Assignee | ||
Updated•13 years ago
|
Attachment #635154 -
Flags: review?(chris.double) → review+
Had U and V channels backwards. Carry over r=doublec.
Attachment #635154 -
Attachment is obsolete: true
Attachment #635167 -
Flags: review+
Assignee | ||
Comment 5•13 years ago
|
||
Can we land this so that when the issue in comment 1 is addressed hardware acceleration will work?
Pull request for comment 1 at https://github.com/mozilla-b2g/android-device-otoro/pull/5
Comment 7•13 years ago
|
||
Just an update from my perspective. there are some other shared libraries that don't seem to be present.
E/ExtendedExtractor( 453): Failed to open MM_PARSER_LIB, dlerror = Cannot load library: load_library[1091]: Library 'libmmparser.so' not found
E/ExtendedExtractor( 453): Failed to open MM_PARSER_LITE_LIB, dlerror = Cannot load library: load_library[1091]: Library 'libmmparser_lite.so' not found
Also the video I am trying to open
people.mozilla.com/~dclarke/a.html does not play.
//if(!strcmp(mComponentName, "OMX.google.h264.decoder")
// && (profile != kAVCProfileBaseline)) {
// LOGE("%s does not support profiles > kAVCProfileBaseline", mComponentName);
// The profile is unsupported by the decoder
// return ERROR_UNSUPPORTED;
// }
This seems to be where the decision is being made. Uncommented, I get audio playback but the lack of the ".so" files listed above throw an error.
Without uncommenting I get no audio / video .
http://source-android.frandroid.com/frameworks/base/media/libstagefright/OMXCodec.cpp
Looks like there have been changes to libstagefright, that we don't have...
as these lines don't show up.
Assignee | ||
Comment 8•13 years ago
|
||
OMX.google.h264.decoder is the software decoder. We want the *.qcom.* decoder which those .so files give us. What video doesn't play for you with those .so files included in /system/lib?
Comment 9•13 years ago
|
||
Which .so files ? are they checked in ?
Assignee | ||
Comment 10•13 years ago
|
||
Comment 11•13 years ago
|
||
Chris all otoro devices that went out to QA came pre-flashed to B2G. :( which means those libs are not on my machine.
Comment 12•13 years ago
|
||
Attached it the log i received when attempting to play content
people.mozilla.com/~dclarke/a.html || bit.ly/QencVk
Comment 13•13 years ago
|
||
Obtained original files, applied the pull from comment 6, and tested.
@Edwin, what is the reference video that you are using. ?
This patch is now obsolete. We should have something proper going in the next couple of days. (sorry!)
Reference video I'm using is https://hg.mozilla.org/users/eflores_mozilla.com/video/raw-file/2aaf130aae3f/mp4/big_buck_bunny.mp4
Actually, that's wrong. We'll have something going on maguro, but otoro will require a bit more work yet due to our GB/ICS munge.
Comment 16•13 years ago
|
||
So should we rename this bug for maguro, and create a new one for otoro ?
Assignee | ||
Comment 17•13 years ago
|
||
This should stay otoro because we don't have hardware decoding on otoro and that's what it's addressing.
Comment 18•13 years ago
|
||
Ok.? Is the above patch obsolete for otoro ? There should be a separate bug for maguro support then.
Comment 19•13 years ago
|
||
Edwin, can you give an eta on otoro, and is the b2g demo going to be on a maguro or an otoro device?
Comment 20•12 years ago
|
||
We don't expect that this is device-specific, but rather chipset-specific, right? If it's otoro-only, then we might not need to block on this.
blocking-basecamp: ? → +
blocking-kilimanjaro: ? → +
Comment 21•12 years ago
|
||
This is chipset specific, but for all intensive purposes it is device specific.
Otoro is the device we are shipping on.
Assignee | ||
Comment 22•12 years ago
|
||
This particular bug was for the otoro device specific problem of the hardware decoder shared libraries not being installed when doing an otoro config. It also requires the patch which is attached and this allows hardware decoding to work. But it is very very slow - slower than software. The fix for the slowness is being done in bug 759506.
The issue for the shared libraries not being copied was being addressed by Edwin in a pull request to the mozilla-b2g github repository. Once that's done this patch can be landed and the bug closed.
Edwin, how'd that pull request go?
Comment 23•12 years ago
|
||
It is FYI. Platform specific hw codecs is provided by libstagefrighthw.so
it is added as OMX plugin in OMXMaster::addVendorPlugin()
http://androidxref.com/4.0.4/xref/frameworks/base/media/libstagefright/omx/OMXMaster.cpp#46
Assignee | ||
Comment 25•12 years ago
|
||
It's blocked on 759506 which currently has issues with hardware decoding.
Assignee | ||
Comment 26•12 years ago
|
||
Turns on hardware decoding support on B2G. If the otoro device has the libOmx*.so files for hardware codecs mentioned in comment 1 this enables decoding videos using the hardware decoder.
Assignee: eflores → chris.double
Attachment #635167 -
Attachment is obsolete: true
Status: NEW → ASSIGNED
Attachment #654053 -
Flags: review?(eflores)
Attachment #654053 -
Flags: review?(eflores) → review+
Assignee | ||
Comment 27•12 years ago
|
||
Pull request to get the libraries copied over (updated version of comment 6):
https://github.com/mozilla-b2g/android-device-otoro/pull/12
Assignee | ||
Comment 28•12 years ago
|
||
Comment 29•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla17
You need to log in
before you can comment on or make changes to this bug.
Description
•