]> git.sesse.net Git - ffmpeg/commitdiff
Cosmetics: Reindent after last commit.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Sat, 14 Jan 2017 05:07:06 +0000 (06:07 +0100)
committerCarl Eugen Hoyos <cehoyos@ag.or.at>
Sat, 14 Jan 2017 05:07:06 +0000 (06:07 +0100)
libavformat/matroskaenc.c

index 4760fb0df8cea746584906a5cde2ca5303687a86..4e4afc17dbc486ad6bf1b95d805bbee7c5ce2bff 100644 (file)
@@ -1120,13 +1120,13 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
         // look for a codec ID string specific to mkv to use,
         // if none are found, use AVI codes
         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++) {
-            if (ff_mkv_codec_tags[j].id == par->codec_id) {
-                put_ebml_string(pb, MATROSKA_ID_CODECID, ff_mkv_codec_tags[j].str);
-                native_id = 1;
-                break;
+            for (j = 0; ff_mkv_codec_tags[j].id != AV_CODEC_ID_NONE; j++) {
+                if (ff_mkv_codec_tags[j].id == par->codec_id) {
+                    put_ebml_string(pb, MATROSKA_ID_CODECID, ff_mkv_codec_tags[j].str);
+                    native_id = 1;
+                    break;
+                }
             }
-        }
         } else {
             if (mkv->allow_raw_vfw) {
                 native_id = 0;