]> git.sesse.net Git - ffmpeg/commitdiff
Cosmetics: Reindent after last commit.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Wed, 22 Jul 2015 08:25:10 +0000 (10:25 +0200)
committerCarl Eugen Hoyos <cehoyos@ag.or.at>
Wed, 22 Jul 2015 08:25:10 +0000 (10:25 +0200)
libavformat/mxfdec.c

index 2159bd7037d7ac82cd386c91ef7fdbf107a0c086..2e46b0eaec0d1615597462afa669888f8523a27d 100644 (file)
@@ -2048,13 +2048,13 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
                         st->codec->codec_tag = mxf_get_codec_ul(ff_mxf_codec_tag_uls,
                                                                 &descriptor->essence_codec_ul)->id;
                         if (!st->codec->codec_tag) {
-                        /* support files created before RP224v10 by defaulting to UYVY422
-                           if subsampling is 4:2:2 and component depth is 8-bit */
-                        if (descriptor->horiz_subsampling == 2 &&
-                            descriptor->vert_subsampling == 1 &&
-                            descriptor->component_depth == 8) {
-                            st->codec->pix_fmt = AV_PIX_FMT_UYVY422;
-                        }
+                            /* support files created before RP224v10 by defaulting to UYVY422
+                               if subsampling is 4:2:2 and component depth is 8-bit */
+                            if (descriptor->horiz_subsampling == 2 &&
+                                descriptor->vert_subsampling == 1 &&
+                                descriptor->component_depth == 8) {
+                                st->codec->pix_fmt = AV_PIX_FMT_UYVY422;
+                            }
                         }
                     }
                 }