Commit 604eb152 authored by Janne Grunau's avatar Janne Grunau Committed by Michael Niedermayer

aacenc: fix typo in sync extension constant in 8ae0fa24

(cherry picked from commit 2fd9035d)
parent 9de202a6
...@@ -151,7 +151,7 @@ static void put_audio_specific_config(AVCodecContext *avctx) ...@@ -151,7 +151,7 @@ static void put_audio_specific_config(AVCodecContext *avctx)
put_bits(&pb, 1, 0); //is not extension put_bits(&pb, 1, 0); //is not extension
//Explicitly Mark SBR absent //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, 5, AOT_SBR);
put_bits(&pb, 1, 0); put_bits(&pb, 1, 0);
flush_put_bits(&pb); flush_put_bits(&pb);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment