summaryrefslogtreecommitdiff
path: root/libavcodec/qpeg.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-04-24 14:09:24 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-04-24 14:09:24 +0000
commit1c86db80a94a00e02716831268461ee7f490f157 (patch)
tree9329acd8da40cf6be26dd9710260f2f4afdfd765 /libavcodec/qpeg.c
parentf83c57735e44aaec8245dc1f7412f60ff5faaa0e (diff)
Remove useless assignment during initialization for some decoders
Originally committed as revision 18680 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qpeg.c')
-rw-r--r--libavcodec/qpeg.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c
index 64ab74b2b2..20f166329d 100644
--- a/libavcodec/qpeg.c
+++ b/libavcodec/qpeg.c
@@ -291,7 +291,6 @@ static av_cold int decode_init(AVCodecContext *avctx){
a->avctx = avctx;
avctx->pix_fmt= PIX_FMT_PAL8;
- a->pic.data[0] = NULL;
a->refdata = av_malloc(avctx->width * avctx->height);
return 0;