projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c421104
)
Shut up an uninitialized variable GCC warning in VP8.
author
Jason Garrett-Glaser
<darkshikari@gmail.com>
Thu, 22 Jul 2010 23:04:51 +0000
(23:04 +0000)
committer
Jason Garrett-Glaser
<darkshikari@gmail.com>
Thu, 22 Jul 2010 23:04:51 +0000
(23:04 +0000)
Originally committed as revision 24445 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/vp8.c
patch
|
blob
|
history
diff --git
a/libavcodec/vp8.c
b/libavcodec/vp8.c
index
ead4dd8
..
9ab596f
100644
(file)
--- a/
libavcodec/vp8.c
+++ b/
libavcodec/vp8.c
@@
-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;