Commit bc52ce30 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avformat/matroskaenc: Reindent after previous commit

Also remove { } after an if if there is only one statement inside { }.
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
parent 0d4b3b4c
...@@ -1297,9 +1297,8 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv, ...@@ -1297,9 +1297,8 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
put_ebml_uint(pb, MATROSKA_ID_CODECDELAY, codecdelay); put_ebml_uint(pb, MATROSKA_ID_CODECDELAY, codecdelay);
} }
if (par->codec_id == AV_CODEC_ID_OPUS) { if (par->codec_id == AV_CODEC_ID_OPUS)
put_ebml_uint(pb, MATROSKA_ID_SEEKPREROLL, OPUS_SEEK_PREROLL); put_ebml_uint(pb, MATROSKA_ID_SEEKPREROLL, OPUS_SEEK_PREROLL);
}
put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_AUDIO); put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_AUDIO);
......
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