summaryrefslogtreecommitdiffstats
path: root/media/jni/android_media_MediaProfiles.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Frameworks/base: Wall Werror in media/jniAndreas Gampe2014-11-101-15/+24
| | | | | | Turn on -Wall -Werror in media/jni. Fix warnings. Change-Id: I9da54ad379d8172ee535b52ee2b0637a2533f4e3
* CamcorderProfiles: add high speed profile constantsZhijun He2014-07-251-1/+3
| | | | Change-Id: I8f783466f8c2560820db14488acc1a309d27ab0f
* Remove VideoEditorLajos Molnar2014-04-211-84/+1
| | | | | | | | | remove android.media.videoeditor.* No longer supported and should not be used. Bug: 13542518 Change-Id: I12de122443f0289ab1dfdd8b553e572a830cf412
* AArch64: Use long for pointers in media classesAshok Bhat2014-01-151-8/+8
| | | | | | | | | | | | | | For storing pointers, long is used in media classes, as native pointers can be 64-bit. In addition, some minor changes have been done to conform with standard JNI practice (e.g. use of jint instead of int in JNI function prototypes) Change-Id: Idc4ca0124d03df7f9cef412488abafd020e5e774 Signed-off-by: Ashok Bhat <ashok.bhat@arm.com> Signed-off-by: Marcus Oakland <marcus.oakland@arm.com> Signed-off-by: Kévin PETIT <kevin.petit@arm.com>
* Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF) DO NOT MERGESteve Block2011-10-261-19/+19
| | | | | | | See https://android-git.corp.google.com/g/#/c/143865 Bug: 5449033 Change-Id: I0122812ed6ff6f5b59fe4a43ab8bff0577adde0a
* Add QVGA resolution to CamcorderProfileJames Dong2011-09-191-6/+10
| | | | | Change-Id: Icebbafb68d8164370f98a2c36699845d10ef081b related-to-bug: 5145483
* Fix for 4142219 Don't hard code platform-specific limitations (Jni/ Java)Rajneesh Chowdury2011-08-191-4/+36
| | | | | | Also fixes 5118207 add other video codec support for video editor export. Change-Id: If72427173bd8ff684af07ba00f4425c1deef29c6
* fix for issue 4142219Hong Teng2011-07-201-1/+51
| | | | | | Don't hard code platform-specific limitations-jni/java part Change-Id: Icde261b1caf29a8cf552884c97f3c9d0b41741a3
* Adding hasProfile.Nipun Kwatra2010-09-101-0/+16
| | | | | | | | | - Added hasProfile to CamcorderProfile and JNI. - Added hasCamcorderProfile to MediaProfiles. - using android.hardware.Camera.CAMERA_ID_DEFAULT for default camera in get(). Change-Id: Ib57bb49ae79492d7cbc0ec6c7b6efcbf74f80013
* Added specific resolution and time lapse profiles.Nipun Kwatra2010-09-101-1/+3
| | | | | | | | | | | - Added enums QUALITY_{QCIF,480P,720P,1080P} QUALITY_TIME_LAPSE_{LOW,HIGH,QCIF,480P,720P,1080P} in CamcorderProfile and corresponding ones in MediaProfiles. - Added functions createDefaultCamcorderTimeLapseLowProfile, createDefaultCamcorderTimeLapseHighProfile to set default values. - Moved javadoc for constants to the get() function. Change-Id: Ib8b3f8d29395dff77a397d1e6b44cfaf8c481d4d
* Add multiple camera support for in MediaProfiles.Chih-Chung Chang2010-07-011-20/+20
| | | | Change-Id: Ie89568a0f5f5fd08ede77e33f9a559215d6bed9a
* Image encoding settings java API through xml configuration fileJames Dong2010-02-241-4/+38
| | | | | | - I decided to completely remove jpeg decoding related stuff from this change I think that setting is better off if it is specified by the system properties. We don't have to include MediaProfiles.h header in skia files
* Support decoder queries from media profiles xml configuration fileJames Dong2010-02-121-8/+63
|
* Camcorder profile Java API supportJames Dong2010-02-041-4/+68
| | | | | | | - Use Enum for Quality instead of int - Use static values() method from Enum, rather than if-else bug - 2417312
* Initial check-in for xml-based encoder capabilities retrievalJames Dong2010-02-011-0/+187
- Changed the Java API as suggested - Treat /etc/media_profiles.xml as the default xml configurtion file