mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Cosmetics: Reindent after last commit.
This commit is contained in:
parent
c723108e25
commit
935404923d
@ -1120,13 +1120,13 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
|
|||||||
// look for a codec ID string specific to mkv to use,
|
// look for a codec ID string specific to mkv to use,
|
||||||
// if none are found, use AVI codes
|
// if none are found, use AVI codes
|
||||||
if (par->codec_id != AV_CODEC_ID_RAWVIDEO || par->codec_tag) {
|
if (par->codec_id != AV_CODEC_ID_RAWVIDEO || par->codec_tag) {
|
||||||
for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
|
for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
|
||||||
if (ff_mkv_codec_tags[j].id == par->codec_id) {
|
if (ff_mkv_codec_tags[j].id == par->codec_id) {
|
||||||
put_ebml_string(pb, MATROSKA_ID_CODECID, ff_mkv_codec_tags[j].str);
|
put_ebml_string(pb, MATROSKA_ID_CODECID, ff_mkv_codec_tags[j].str);
|
||||||
native_id = 1;
|
native_id = 1;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
if (mkv->allow_raw_vfw) {
|
if (mkv->allow_raw_vfw) {
|
||||||
native_id = 0;
|
native_id = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user