提交 52a17972 编写于 作者: M Michael Niedermayer

avformat/yuv4mpegdec: fix "warning: field_order may be used uninitialized in this function"

Signed-off-by: NMichael Niedermayer <michaelni@gmx.at>
上级 0fadbd36
......@@ -39,7 +39,7 @@ static int yuv4_read_header(AVFormatContext *s)
enum AVPixelFormat pix_fmt = AV_PIX_FMT_NONE, alt_pix_fmt = AV_PIX_FMT_NONE;
enum AVChromaLocation chroma_sample_location = AVCHROMA_LOC_UNSPECIFIED;
AVStream *st;
enum AVFieldOrder field_order;
enum AVFieldOrder field_order = AV_FIELD_UNKNOWN;
for (i = 0; i < MAX_YUV4_HEADER; i++) {
header[i] = avio_r8(pb);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册