diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-20 13:45:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-20 14:18:24 +0200 |
commit | 3d64845600c6486a2706b118a81805f3bf4d3db5 (patch) | |
tree | cde81e64259e4047959760aa7eb94aa09c78123c | |
parent | fb679d53743f3beed3ccb998c428c8b601cec59e (diff) | |
download | ffmpeg-3d64845600c6486a2706b118a81805f3bf4d3db5.tar.gz |
movenc: ilbc needs audio_vbr set.
Without this the block_align or bitrate value is not available to the decoder
Fixes Ticket2858
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/movenc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index d0f663bb62..53f1b8ec95 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -3692,6 +3692,9 @@ static int mov_write_header(AVFormatContext *s) }else{ track->sample_size = (av_get_bits_per_sample(st->codec->codec_id) >> 3) * st->codec->channels; } + if (st->codec->codec_id == AV_CODEC_ID_ILBC) { + track->audio_vbr = 1; + } if (track->mode != MODE_MOV && track->enc->codec_id == AV_CODEC_ID_MP3 && track->timescale < 16000) { av_log(s, AV_LOG_ERROR, "track %d: muxing mp3 at %dhz is not supported\n", |