summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/on2/dec/SoftVPX.cpp
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2012-11-14 15:24:53 -0800
committerAndreas Huber <andih@google.com>2012-11-15 09:47:02 -0800
commit5ce181568da90c78ba7fad3e084c8479041545df (patch)
tree048c10cdf32b82942971ddd1ab478dcf04ecd778 /media/libstagefright/codecs/on2/dec/SoftVPX.cpp
parent7e900282f04844b723986fa51b72f61a80e05c2f (diff)
downloadframeworks_av-5ce181568da90c78ba7fad3e084c8479041545df.zip
frameworks_av-5ce181568da90c78ba7fad3e084c8479041545df.tar.gz
frameworks_av-5ce181568da90c78ba7fad3e084c8479041545df.tar.bz2
The length information of the chunks making up vorbis codec specific info
are "Xiph-style-lacing encoded" instead of individual bytes. Change-Id: Ic1274a5bd8f082197bae6831da04002762a920c5 related-to-bug: 7401329
Diffstat (limited to 'media/libstagefright/codecs/on2/dec/SoftVPX.cpp')
-rw-r--r--media/libstagefright/codecs/on2/dec/SoftVPX.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/on2/dec/SoftVPX.cpp b/media/libstagefright/codecs/on2/dec/SoftVPX.cpp
index bf9ab3a..a400b4c 100644
--- a/media/libstagefright/codecs/on2/dec/SoftVPX.cpp
+++ b/media/libstagefright/codecs/on2/dec/SoftVPX.cpp
@@ -66,7 +66,7 @@ void SoftVPX::initPorts() {
def.eDir = OMX_DirInput;
def.nBufferCountMin = kNumBuffers;
def.nBufferCountActual = def.nBufferCountMin;
- def.nBufferSize = 256 * 1024;
+ def.nBufferSize = 768 * 1024;
def.bEnabled = OMX_TRUE;
def.bPopulated = OMX_FALSE;
def.eDomain = OMX_PortDomainVideo;