]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dvdec.c
xface: reduce stack usage by directly storing 2 bytes data instead of pointers.
[ffmpeg] / libavcodec / dvdec.c
index 4f0d0f64c90829d9ed3cf6825859162c4128802b..99fe1f4981d79193f5acf48e98dc15640f8c3809 100644 (file)
@@ -505,7 +505,7 @@ static int dvvideo_decode_frame(AVCodecContext *avctx, void *data,
     if (*vsc_pack == dv_video_control) {
         apt    = buf[4] & 0x07;
         is16_9 = (vsc_pack[2] & 0x07) == 0x02 ||
-                               (!apt && (vsc_pack[2] & 0x07) == 0x07);
+                 (!apt && (vsc_pack[2] & 0x07) == 0x07);
         ff_set_sar(avctx, s->sys->sar[is16_9]);
     }