Commit 566be4f9 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/matroskaenc: reindent after last commit

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 2062d512
...@@ -948,14 +948,14 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv, ...@@ -948,14 +948,14 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
} }
if (par->codec_type == AVMEDIA_TYPE_AUDIO) { if (par->codec_type == AVMEDIA_TYPE_AUDIO) {
if (!bit_depth && par->codec_id != AV_CODEC_ID_ADPCM_G726) { if (!bit_depth && par->codec_id != AV_CODEC_ID_ADPCM_G726) {
if (par->bits_per_raw_sample) if (par->bits_per_raw_sample)
bit_depth = par->bits_per_raw_sample; bit_depth = par->bits_per_raw_sample;
else else
bit_depth = av_get_bytes_per_sample(par->format) << 3; bit_depth = av_get_bytes_per_sample(par->format) << 3;
} }
if (!bit_depth) if (!bit_depth)
bit_depth = par->bits_per_coded_sample; bit_depth = par->bits_per_coded_sample;
} }
if (par->codec_id == AV_CODEC_ID_AAC) { if (par->codec_id == AV_CODEC_ID_AAC) {
......
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