commit | 5c824472f7cec8a3634838f7d88ffa9ccc7fc8e6 | [log] [tgz] |
---|---|---|
author | Martin Storsjo <martin@martin.st> | Wed Jan 30 21:12:58 2013 +0200 |
committer | Martin Storsjo <martin@martin.st> | Thu Jan 31 11:27:40 2013 +0200 |
tree | 86d6c06bb24209e147f0230e57e03e41f79ed7f2 | |
parent | 12834fe289e8173e94f31603fa6d313abe56ad70 [diff] |
SoftVorbis: Set the right encoding in the port definition Previously, it set the encoding type to AAC, which is just a typo. Change-Id: I2dcae1f579e9feb0b35b6f5d334028c534275042
diff --git a/media/libstagefright/codecs/vorbis/dec/SoftVorbis.cpp b/media/libstagefright/codecs/vorbis/dec/SoftVorbis.cpp index ac88107..fab0b0c 100644 --- a/media/libstagefright/codecs/vorbis/dec/SoftVorbis.cpp +++ b/media/libstagefright/codecs/vorbis/dec/SoftVorbis.cpp
@@ -93,7 +93,7 @@ def.format.audio.pNativeRender = NULL; def.format.audio.bFlagErrorConcealment = OMX_FALSE; - def.format.audio.eEncoding = OMX_AUDIO_CodingAAC; + def.format.audio.eEncoding = OMX_AUDIO_CodingVORBIS; addPort(def);