diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-10-24 00:05:57 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-10-24 23:48:57 +0100 |
commit | ad6b00d85f686324aa2bd93e39261fa1d411f141 (patch) | |
tree | 18fdbd76eca7a5eca0cafe544358ed795c870dd7 /libavformat/mxfdec.c | |
parent | 28c020d4df9b060a58a124a7a5406d4313fbe249 (diff) | |
download | ffmpeg-ad6b00d85f686324aa2bd93e39261fa1d411f141.tar.gz |
mxfdec: add missing break
CC: libav-stable@libav.org
Bug-Id: CID 732232
Diffstat (limited to 'libavformat/mxfdec.c')
-rw-r--r-- | libavformat/mxfdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c index 879e73e8eb..9aedd477f4 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", |