Module: libav Branch: master Commit: 08fa34bf75942f66796d770ff42a3721b2e3d2d4
Author: Vittorio Giovara <[email protected]> Committer: Vittorio Giovara <[email protected]> Date: Wed Jan 28 14:41:00 2015 +0000 yuv4mpegdec: initialize field_order in yuv4_read_header() CC: [email protected] Bug-Id: CID 1265721 --- libavformat/yuv4mpegdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/yuv4mpegdec.c b/libavformat/yuv4mpegdec.c index e5c4456..dd81358 100644 --- a/libavformat/yuv4mpegdec.c +++ b/libavformat/yuv4mpegdec.c @@ -38,8 +38,8 @@ static int yuv4_read_header(AVFormatContext *s) rated = 0, aspectn = 0, aspectd = 0; enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE, alt_pix_fmt = AV_PIX_FMT_NONE; enum AVChromaLocation chroma_sample_location = AVCHROMA_LOC_UNSPECIFIED; + enum AVFieldOrder field_order = AV_FIELD_UNKNOWN; AVStream *st; - enum AVFieldOrder field_order; for (i = 0; i < MAX_YUV4_HEADER; i++) { header[i] = avio_r8(pb); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
