From ee8d4a4142886123d05e994f8aef97d7bcf1181e Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 24 Jan 2013 11:58:51 +0000 Subject: [PATCH] matroskaenc: fix -codec copy with TTA Signed-off-by: Paul B Mahol --- libavformat/matroskaenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index 15bf4ed567..a34f485293 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -554,6 +554,8 @@ static int mkv_write_tracks(AVFormatContext *s) if (!bit_depth) bit_depth = av_get_bytes_per_sample(codec->sample_fmt) << 3; + if (!bit_depth) + bit_depth = codec->bits_per_coded_sample; if (codec->codec_id == AV_CODEC_ID_AAC) get_aac_sample_rates(s, codec, &sample_rate, &output_sample_rate);