summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2012-06-20 14:31:30 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-06-20 14:31:30 -0700
commite77c76dc57f88ec9e6b370dcba8a8c3e0684461d (patch)
treeb08937eba3171d30a27df1c07e38cb5f930baab9
parentff8977f3392036b387fc2f65056bcf19f9942c9d (diff)
parent39a3113539f9bcc86a8efe562780c23ac8731098 (diff)
downloadframeworks_av-e77c76dc57f88ec9e6b370dcba8a8c3e0684461d.zip
frameworks_av-e77c76dc57f88ec9e6b370dcba8a8c3e0684461d.tar.gz
frameworks_av-e77c76dc57f88ec9e6b370dcba8a8c3e0684461d.tar.bz2
am 39a31135: Revert input buffer count for the SoftAAC* decoders back to 4.
* commit '39a3113539f9bcc86a8efe562780c23ac8731098': Revert input buffer count for the SoftAAC* decoders back to 4.
-rw-r--r--media/libstagefright/codecs/aacdec/SoftAAC.h2
-rw-r--r--media/libstagefright/codecs/aacdec/SoftAAC2.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/media/libstagefright/codecs/aacdec/SoftAAC.h b/media/libstagefright/codecs/aacdec/SoftAAC.h
index c0789ab..2e75005 100644
--- a/media/libstagefright/codecs/aacdec/SoftAAC.h
+++ b/media/libstagefright/codecs/aacdec/SoftAAC.h
@@ -45,7 +45,7 @@ protected:
private:
enum {
- kNumInputBuffers = 32,
+ kNumInputBuffers = 4,
kNumOutputBuffers = 4,
};
diff --git a/media/libstagefright/codecs/aacdec/SoftAAC2.h b/media/libstagefright/codecs/aacdec/SoftAAC2.h
index ac379f4..0353196 100644
--- a/media/libstagefright/codecs/aacdec/SoftAAC2.h
+++ b/media/libstagefright/codecs/aacdec/SoftAAC2.h
@@ -44,7 +44,7 @@ protected:
private:
enum {
- kNumInputBuffers = 32,
+ kNumInputBuffers = 4,
kNumOutputBuffers = 4,
};