summaryrefslogtreecommitdiffstats
path: root/media/libavextensions/stagefright/AVUtils.cpp
diff options
context:
space:
mode:
authorSurajit Podder <spodder@codeaurora.org>2015-07-22 18:58:29 +0530
committerSatish Kamuju <skamuj@codeaurora.org>2015-10-06 17:35:24 +0530
commitbd019775a921ae9165e924e4d37bc838a7ef5781 (patch)
treee0ca419e9f0d1d28a9caed2d00ebcb7021284c4e /media/libavextensions/stagefright/AVUtils.cpp
parent61f6cfa961d22a9a54d91366fefec135f091012d (diff)
downloadframeworks_av-bd019775a921ae9165e924e4d37bc838a7ef5781.zip
frameworks_av-bd019775a921ae9165e924e4d37bc838a7ef5781.tar.gz
frameworks_av-bd019775a921ae9165e924e4d37bc838a7ef5781.tar.bz2
video: Port AOSP fixes
Includes following fixes: f510d0c libstagefright: Disable multi slice mode for video encode ca46843 audio: Fix for failure in CTS MediaRecorderTest cases b4d0490 libstagefright: check the audio source when adding to MPEG4Writer 89c6c3f libstagefright: Allocate cached camera buffers for sw encoders f2c387b libstagefright: Choose target specific media_codecs.xml f3e7122 libstagefright: Implement fallback mechanism to SW decoder Change-Id: I90398b2fead1f4e163935bf1db342e24275f7933
Diffstat (limited to 'media/libavextensions/stagefright/AVUtils.cpp')
-rw-r--r--media/libavextensions/stagefright/AVUtils.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/media/libavextensions/stagefright/AVUtils.cpp b/media/libavextensions/stagefright/AVUtils.cpp
index 8e7c39d..5113446 100644
--- a/media/libavextensions/stagefright/AVUtils.cpp
+++ b/media/libavextensions/stagefright/AVUtils.cpp
@@ -143,6 +143,18 @@ void AVUtils::HEVCMuxer::getHEVCCodecSpecificDataFromInputFormatIfPossible(
return;
}
+bool AVUtils::isAudioMuxFormatSupported(const char *) {
+ return true;
+}
+
+void AVUtils::cacheCaptureBuffers(sp<ICamera>, video_encoder) {
+ return;
+}
+
+const char *AVUtils::getCustomCodecsLocation() {
+ return "/etc/media_codecs.xml";
+}
+
// ----- NO TRESSPASSING BEYOND THIS LINE ------
AVUtils::AVUtils() {}