Commit a6da1aa0 authored by David Conrad's avatar David Conrad

Use sample format for bit depth if av_get_bits_per_sample() doesn't give one

Originally committed as revision 10362 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8eb19153
......@@ -498,6 +498,9 @@ static int mkv_write_tracks(AVFormatContext *s)
int sample_rate = codec->sample_rate;
int output_sample_rate = 0;
if (!bit_depth)
bit_depth = av_get_bits_per_sample_format(codec->sample_fmt);
if (codec->codec_id == CODEC_ID_AAC)
get_aac_sample_rates(codec, &sample_rate, &output_sample_rate);
......
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