summaryrefslogtreecommitdiff
path: root/libavcodec/aacenc.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-ffmpeg@jannau.net>2011-01-23 15:45:19 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-01-26 03:43:27 +0100
commit604eb152fcb9582ed8fba2285110a9e47f78c21d (patch)
treefc67295f4f9d1c7c6848080c16b00f74bec54376 /libavcodec/aacenc.c
parent9de202a633e643a33f50ddba9dae00cc664c6854 (diff)
aacenc: fix typo in sync extension constant in 8ae0fa2
(cherry picked from commit 2fd9035ddc4f6b9313023891a16b6e9820d958ed)
Diffstat (limited to 'libavcodec/aacenc.c')
-rw-r--r--libavcodec/aacenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 6a113ef30b..120f873342 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -151,7 +151,7 @@ static void put_audio_specific_config(AVCodecContext *avctx)
put_bits(&pb, 1, 0); //is not extension
//Explicitly Mark SBR absent
- put_bits(&pb, 11, 0x27b); //sync extension
+ put_bits(&pb, 11, 0x2b7); //sync extension
put_bits(&pb, 5, AOT_SBR);
put_bits(&pb, 1, 0);
flush_put_bits(&pb);