diff options
author | Justin Greer <justin@zencoder.com> | 2012-08-21 22:00:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-21 22:32:31 +0200 |
commit | e16fda9236bd6464e61baba31abae7852dceaa90 (patch) | |
tree | 931945081d2db48e4009435990b613b705318d6c /libavformat/mov.c | |
parent | 37a15f3e669372075c88254e070c971aecb485aa (diff) | |
download | ffmpeg-e16fda9236bd6464e61baba31abae7852dceaa90.tar.gz |
mov: Change default aac priming fallback from 2112 to 1024
This fixes priming for faac
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 8b966b1891..256e81f519 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -3043,7 +3043,7 @@ static int mov_read_header(AVFormatContext *s) MOVStreamContext *sc = st->priv_data; if(st->codec->codec_type == AVMEDIA_TYPE_AUDIO && st->codec->codec_id == AV_CODEC_ID_AAC) { if(!sc->start_pad) - sc->start_pad = 2112; + sc->start_pad = 1024; st->skip_samples = sc->start_pad; } } |