Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-20 15:45:20 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2013-08-20 20:42:13 +0400
commit364495a351b223212b747221e8210d1a5ebd71e6 (patch)
treeccbbaf3e90dafdede2e69c57952ecca76a0c8e2e /libavformat
parentf9c872622e843e1338fb938af6ad690494cc980f (diff)
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> (cherry picked from commit 3d64845600c6486a2706b118a81805f3bf4d3db5)
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/movenc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 8f3b1bc57a..dd7dd52c18 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -3648,6 +3648,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",