summaryrefslogtreecommitdiffstats
path: root/media/tests/omxjpegdecoder
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary SkImageDecoder_libjpeg.cppChih-Wei Huang2011-03-111-5/+0
| | | | | | | | | | | | | | | | | Adding files outside $(LOCAL_PATH) is a bad idea. It generates output files to an unexpected directory. In this case, it's out/target/external/skia/src/images/SkImageDecoder_libjpeg.o It's not in $(PRODUCT_OUT), which is not correct. Worse, it makes the build system be unable to build different architectures (arm and x86) simultaneously, since the output files conflcit. Seems we can just remove SkImageDecoder_libjpeg.cpp since it's already in libskia. Change-Id: Ia0ed72d8a6cbd3b2f3997b71dfdcf72fee50f5bb
* 64-bit file size/offset support for media frameworkJames Dong2010-11-182-4/+4
| | | | Change-Id: I3452bc2c0f1d990cc67285df2fce1f9f86ff8e10
* Include the framework copy of the OpenMAX headers instead of referencing ↵Andreas Huber2010-10-151-1/+1
| | | | | | | external/opencore. Change-Id: I762f59acf5e1f770e4d7c2d89af362bfffebefa6 related-to-bug: 3101573
* Remove most stagefright property overrides, remove VorbisPlayer and ↵Andreas Huber2010-06-231-3/+0
| | | | | | | VorbisMetadataRetriever as this functionality is now provided by stagefright. Change-Id: Ieafe75a4550c273ad59b4518d7cd4c0fce0f7cce related-to-bug: 2370115
* add optional preftable to image codecs, for more control over the resulting ↵Mike Reed2010-03-033-6/+4
| | | | bitmap config
* Add missing libjpeg in linker option. Currently this library is used by theDoug Kwan2010-01-191-1/+2
| | | | main executable but is included implicitly via inter-library dependency.
* Add missing shared libraries in linker commands. Currently these libraries areDoug Kwan2009-12-221-1/+3
| | | | linked implicitly via dependencies of other shared libraries.
* Fix full stagefright build in master, various warnings/errors in ↵Andreas Huber2009-12-165-18/+18
| | | | omx_jpeg_decoder
* Fix the broken build of omxjpegdecoder: http://b/2299035.Wei-Ta Chen2009-12-034-4/+16
| | | | | | | | | | 1) Add the include path for jni.h. 2) Rename InitCheck() and read_at() to initCheck() and readAt(), repectively in StreamSource, as done in DataSource. 3) Add back the definition of SkJPEGImageDecoder to jpeg_decoder_bench.cpp. Need to do so because SkJPEGImageDecoder is not defined in a header file.
* Implement OmxJpegImageDecoder.Wei-Ta Chen2009-09-168-0/+619
Add StreamSource, which wraps a SkStream to a DataSource. Add SkOmxPixelRef, which holds a MediaBuffer. Test OmxJpegImageDecoder by a Jpeg decoder bench.