summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Clean up some makefiles.Dan Albert2014-09-112-6/+1
| | | | | | The build system takes care of these things for you. Change-Id: Ife9605f15786e11d6a3578f56ed83dd9ae7fd799
* Merge "Add test for AMR-NB decoder"Glenn Kasten2014-09-112-0/+170
|\
| * Add test for AMR-NB decoderAshok Bhat2014-06-162-0/+170
| | | | | | | | | | | | | | | | | | | | | | The test accepts a .amr file as input and dumps output PCM in a wav file. To run the test, use following command libstagefright_amrnbdec_test <input amr> <output wav> Change-Id: I2492c2ed4e670c9fd8cb4213201ccbd0cb9bf8fe Signed-off-by: Ashok Bhat <ashok.bhat@arm.com>
* | Merge "Fix inline assembly for clang"Glenn Kasten2014-09-110-0/+0
|\ \
| * | Fix inline assembly for clangBernhard Rosenkränzer2013-12-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add r8, r0, asl #2 and add r8, r8, r0, asl #2 are identical in gcc inline assembly, but clang accepts only the latter variant. Change-Id: I922367984b6ae2f7268ce99facaf8da425c39d7e Signed-off-by: Bernhard Rosenkränzer <Bernhard.Rosenkranzer@linaro.org>
* | | Merge "Fix in SoftAVCEncoder plugin"Narayan Kamath2014-09-041-3/+4
|\ \ \
| * | | Fix in SoftAVCEncoder pluginAshok Bhat2014-07-091-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | size of buffer_handle_t, a pointer type, was assumed to be 4 bytes. This patch uses sizeof(buffer_handle_t) instead. In addition, replaced magic number 4 with sizeof(OMX_U32) Change-Id: Id5a7ed805a7b8e9867d8e51655cd334a66ac2c2b Signed-off-by: Ashok Bhat <ashok.bhat@arm.com>
* | | | Merge "Move chromium_http/support.cpp off androidGetTid."Elliott Hughes2014-08-161-1/+1
|\ \ \ \
| * | | | Move chromium_http/support.cpp off androidGetTid.Elliott Hughes2014-08-181-1/+1
|/ / / / | | | | | | | | | | | | | | | | Bug: 17048545 Change-Id: I9bb86908177d8c5350124b4f8bee448595eb32a4
* | | | Merge "Use gettid directly."Elliott Hughes2014-08-161-1/+1
|\ \ \ \
| * | | | Use gettid directly.Elliott Hughes2014-08-181-1/+1
|/ / / / | | | | | | | | | | | | | | | | Bug: 17048545 Change-Id: I5ae40c2de1afc2a59f0b28e81c25f0c404368408
* | | | Merge "Revert "Fix build after side-stepping global -Bsymbolic.""Dan Albert2014-08-073-25/+0
|\ \ \ \
| * | | | Revert "Fix build after side-stepping global -Bsymbolic."Dan Albert2014-08-083-25/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 3b909164de79904137bb6661514d5ca6236a49c9. Bug: 16853291
* | | | | Merge "Fix PIC relocations for non-Bsymbolic builds"Dan Albert2014-08-077-0/+29
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Fix PIC relocations for non-Bsymbolic buildsArd Biesheuvel2014-08-087-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The ARM assembly contains a couple of hand-coded PC relative references to data defined in other object files. Make sure the externs are tagged as hidden so the linker knows that it can resolve the reference locally at build time. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@gmail.com> Bug: 16853291 Change-Id: If7bc8e5bb6a2c63b9df33666d56e6c42f398fd47
* | | | | Merge "Fix build after side-stepping global -Bsymbolic."Dan Albert2014-08-073-0/+25
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Fix build after side-stepping global -Bsymbolic.Dan Albert2014-08-073-0/+25
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of the assembly in the codecs is generating invalid relocations without -Bsymbolic. Leave it on for these projects for the time being. Bug: 16853291 Change-Id: Id70488b077256a70137c4417f21be2c2d1d4341c
* | | | Merge "Add SELinux MAC to DrmManagerService."Nick Kralevich2014-07-233-13/+91
|\ \ \ \
| * | | | Add SELinux MAC to DrmManagerService.Riley Spahn2014-07-253-13/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add SELinux checks on all interfaces exposed by the DrmManagerService. Change-Id: Ib170d3229d88781b76e5fc1c557c8fed233df5d1
* | | | | Merge "Remove last user of <cutils/tztime.h>."Elliott Hughes2014-07-232-4/+2
|\ \ \ \ \
| * | | | | Remove last user of <cutils/tztime.h>.Elliott Hughes2014-07-242-4/+2
| |/ / / / | | | | | | | | | | | | | | | | | | | | Bug: 15765976 Change-Id: Ib21abe9349bb1863304cd7618d8fc95ca254e8f6
* | | | | Merge "Remove 64-bit android_atomic uses from StateQueue."Hans Boehm2014-07-232-12/+8
|\ \ \ \ \
| * | | | | Remove 64-bit android_atomic uses from StateQueue.Hans Boehm2014-07-232-12/+8
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use stdatomic.h instead. We're trying to remove android_atomic use wherever possible. The 64-bit uses seem easiest to remove first. This cleans up the code, though not as much as C++ <atomic> would, if it worked everywhere. Change-Id: I3c29bdbd5915cb9d47118834a3a742fe296cf87f
* | | | | Merge "stagefright: Fix seeking in MPEG4 container - do not merge"Lajos Molnar2014-07-224-120/+97
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | stagefright: Fix seeking in MPEG4 container - do not mergeLajos Molnar2014-07-224-120/+97
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - seek based on user-visible timestamp - seek to previous, next and closest exactly - also update OggExtractor seek to same logic Bug: 12786906 Change-Id: I2d5e1fbff6469b6f081a284be2222a4cb50aa754
* | | | Merge "M3UParser: check for NULL before setting meta data"Lajos Molnar2014-07-161-0/+6
|\ \ \ \
| * | | | M3UParser: check for NULL before setting meta dataRobert Shih2014-07-161-0/+6
|/ / / / | | | | | | | | | | | | | | | | Bug:16351654 Change-Id: I64e9510f719b220471522b4d78a9b00a98bda772
* | | | Merge "Fix M3UParser relative path handling."Lajos Molnar2014-07-161-1/+3
|\ \ \ \
| * | | | Fix M3UParser relative path handling.Lajos Molnar2014-07-161-1/+3
|/ / / / | | | | | | | | | | | | | | | | Bug: 16017037 Change-Id: Ibfff99387fb5b3e721144a2b3f9174092d785137
* | | | Merge "Fix Externally reported security issue"Nick Kralevich2014-07-141-1/+12
|\ \ \ \
| * | | | Fix Externally reported security issueJeff Tinker2014-07-111-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | bug: 12724697 Change-Id: I57f37dbb3b01c0c3d3256be67c395352dd6ada13
* | | | | Merge "h264_enc: Use free() to release memory allocated with malloc()"Narayan Kamath2014-07-101-2/+2
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | h264_enc: Use free() to release memory allocated with malloc()Ashok Bhat2014-06-251-2/+2
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mInputFrameData and mSliceGroup are allocated memory with malloc() but released using delete. Changed this to use free() instead. Change-Id: Iecf6684d97fabb2229d9abd94279a24faf9ac2d7 Signed-off-by: Ashok Bhat <ashok.bhat@arm.com>
* | | | Merge "Switch frameworks/av/media/libmedia to the new icu."Elliott Hughes2014-07-091-1/+1
|\ \ \ \
| * | | | Switch frameworks/av/media/libmedia to the new icu.Elliott Hughes2014-07-091-1/+1
| | |/ / | |/| | | | | | | | | | Change-Id: I45349756bac6d89b02dba082ba6d606f4c489dcf
* | | | Merge "m4v_h263_enc: Use uint32_t for ULong"Narayan Kamath2014-07-024-7/+7
|\ \ \ \ | |/ / / |/| | |
| * | | m4v_h263_enc: Use uint32_t for ULongAshok Bhat2014-07-024-7/+7
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ULong is used in the encoder code as 32-bit unsigned integer type. But it has been defined as an unsigned long, which will be 64-bit on 64-bit platforms. This causes many problems including output mismatch between 32-bit and 64-bit code and crash in certain cases. This patch defines ULong as uint32_t. In addition, it uses uintptr_t at places where an address is cast to an integer to check for alignment. Change-Id: I2b0086824a5985b9fc4628ce6fbe81db156e37d2 Signed-off-by: Ashok Bhat <ashok.bhat@arm.com>
* | | Merge "DO NOT MERGE: Fix for SW video decoder OMX profile/level query"Lajos Molnar2014-06-241-3/+4
|\ \ \
| * | | DO NOT MERGE: Fix for SW video decoder OMX profile/level queryXiaosong Wei2014-06-241-3/+4
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | get the correct profile index from the input param and pass it to profileLevel array to get the corresponding profile/level Change-Id: I582961c0afb53c1781af7fb94226a23e5fdb96cf Signed-off-by: Xiaosong Wei <xiaosong.wei@intel.com> Signed-off-by: Bruce Beare <bruce.j.beare@intel.com> Signed-off-by: Jack Ren <jack.ren@intel.com>
* | | Merge "libmediaplayerservice: unused argument warning messages"Mark Salyzyn2014-06-234-29/+29
|\ \ \
| * | | libmediaplayerservice: unused argument warning messagesMark Salyzyn2014-06-244-29/+29
|/ / / | | | | | | | | | Change-Id: I7dbf62858114ac9b8de6d7b66cc00e002769a5cf
* | | Merge "Fix buffer allocation"Marco Nelissen2014-06-201-1/+1
|\ \ \
| * | | Fix buffer allocationMarco Nelissen2014-06-231-1/+1
|/ / / | | | | | | | | | | | | | | | b/15293123 Change-Id: Icb3ceabf02a55bc931baaf388ce125db6332de0e
* | | Merge "Use char x[] rather than char x[0]."Elliott Hughes2014-06-121-1/+1
|\ \ \
| * | | Use char x[] rather than char x[0].Elliott Hughes2014-06-121-1/+1
| | | | | | | | | | | | | | | | | | | | Bug: 15514223 Change-Id: I895ea8ef7e391fd14cdf8976e048385e01c90f8f
* | | | Merge "Remove dependency on Parcel::{read,write}IntPtr"Narayan Kamath2014-06-101-2/+2
|\ \ \ \
| * | | | Remove dependency on Parcel::{read,write}IntPtrJeff Tinker2014-06-121-2/+2
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug: 15424960 bug: 15107693 (cherry picked from commit bcca9e072c1f288a53ce6862936f57dc36488f96) Change-Id: I3ba59fccb184e99a07f6f82ccdbd00e5204901f6
* | | | Merge "Update OMX messages for 64 bit"Narayan Kamath2014-06-1111-151/+237
|\ \ \ \ | |/ / / |/| | |
| * | | Update OMX messages for 64 bitAndy Hung2014-06-1211-151/+237
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | Change node_id and buffer_id to uint32_t. Ensure IOMX messages are fixed size. Remove 64 bit compile warnings in associated files. Change-Id: Icdbef00aca575e5dc502ebb52e3ce7d0d7883203 Signed-off-by: Andy Hung <hunga@google.com>
* | | Merge "Offer a type-safe album art interface."Elliott Hughes2014-06-118-84/+57
|\ \ \