From 8a982092cc3436c25d68ec15b27277c176ce0061 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Fri, 24 Oct 2014 00:05:57 +0100 Subject: [PATCH] mxfdec: add missing break CC: libav-stable@libav.org Bug-Id: CID 732232 --- libavformat/mxfdec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 879e73e..9aedd47 100644 --- a/libavformat/mxfdec.c +++ b/libavformat/mxfdec.c @@ -1571,6 +1571,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf) } /* Turn field height into frame height. */ st->codec->height *= 2; + break; default: av_log(mxf->fc, AV_LOG_INFO, "Unknown frame layout type: %d\n", -- 2.7.4