提交 86721533 编写于 作者: J Jason Garrett-Glaser

Shut up an uninitialized variable GCC warning in VP8.

Originally committed as revision 24445 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 c4211046
......@@ -1402,7 +1402,7 @@ static int vp8_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
VP8Context *s = avctx->priv_data;
int ret, mb_x, mb_y, i, y, referenced;
enum AVDiscard skip_thresh;
AVFrame *curframe;
AVFrame *curframe = NULL;
if ((ret = decode_frame_header(s, avpkt->data, avpkt->size)) < 0)
return ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册