Remove useless assignment during initialization for some decoders
authorKostya Shishkov <kostya.shishkov@gmail.com>
Fri, 24 Apr 2009 14:09:24 +0000 (14:09 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Fri, 24 Apr 2009 14:09:24 +0000 (14:09 +0000)
Originally committed as revision 18680 to svn://svn.ffmpeg.org/ffmpeg/trunk

12 files changed:
libavcodec/aasc.c
libavcodec/fraps.c
libavcodec/kmvc.c
libavcodec/qpeg.c
libavcodec/smacker.c
libavcodec/targa.c
libavcodec/tiff.c
libavcodec/tscc.c
libavcodec/vmdav.c
libavcodec/vmnc.c
libavcodec/zmbv.c
libavcodec/zmbvenc.c

index daabb2c..46f64f7 100644 (file)
@@ -52,7 +52,6 @@ static av_cold int aasc_decode_init(AVCodecContext *avctx)
     s->avctx = avctx;
 
     avctx->pix_fmt = PIX_FMT_BGR24;
-    s->frame.data[0] = NULL;
 
     return 0;
 }
index 81fa5d5..da1bf0d 100644 (file)
@@ -63,7 +63,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
     avctx->pix_fmt= PIX_FMT_NONE; /* set in decode_frame */
 
     s->avctx = avctx;
-    s->frame.data[0] = NULL;
     s->tmpbuf = NULL;
 
     dsputil_init(&s->dsp, avctx);
index a3389da..6ac388f 100644 (file)
@@ -346,8 +346,6 @@ static av_cold int decode_init(AVCodecContext * avctx)
 
     c->avctx = avctx;
 
-    c->pic.data[0] = NULL;
-
     if (avctx->width > 320 || avctx->height > 200) {
         av_log(avctx, AV_LOG_ERROR, "KMVC supports frames <= 320x200\n");
         return -1;
index 64ab74b..20f1663 100644 (file)
@@ -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;
index fca693a..3b3d03e 100644 (file)
@@ -514,8 +514,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
 
     c->avctx = avctx;
 
-    c->pic.data[0] = NULL;
-
     if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
         return 1;
     }
index 10b1aa4..633a696 100644 (file)
@@ -229,7 +229,6 @@ static av_cold int targa_init(AVCodecContext *avctx){
 
     avcodec_get_frame_defaults((AVFrame*)&s->picture);
     avctx->coded_frame= (AVFrame*)&s->picture;
-    s->picture.data[0] = NULL;
 
     return 0;
 }
index 7805193..2768590 100644 (file)
@@ -512,7 +512,6 @@ static av_cold int tiff_init(AVCodecContext *avctx){
     s->avctx = avctx;
     avcodec_get_frame_defaults((AVFrame*)&s->picture);
     avctx->coded_frame= (AVFrame*)&s->picture;
-    s->picture.data[0] = NULL;
     ff_lzw_decode_open(&s->lzw);
     ff_ccitt_unpack_init();
 
index 8e5edbd..d1a924d 100644 (file)
@@ -139,7 +139,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
 
     c->avctx = avctx;
 
-    c->pic.data[0] = NULL;
     c->height = avctx->height;
 
     if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
index 2c24355..13567b6 100644 (file)
@@ -359,8 +359,6 @@ static av_cold int vmdvideo_decode_init(AVCodecContext *avctx)
         palette32[i] = (r << 16) | (g << 8) | (b);
     }
 
-    s->frame.data[0] = s->prev_frame.data[0] = NULL;
-
     return 0;
 }
 
index fb78449..4874caf 100644 (file)
@@ -465,7 +465,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
 
     c->avctx = avctx;
 
-    c->pic.data[0] = NULL;
     c->width = avctx->width;
     c->height = avctx->height;
 
index 7b3c7dd..f150a86 100644 (file)
@@ -599,7 +599,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
 
     c->avctx = avctx;
 
-    c->pic.data[0] = NULL;
     c->width = avctx->width;
     c->height = avctx->height;
 
index 1bad57d..d45bbe2 100644 (file)
@@ -251,7 +251,6 @@ static av_cold int encode_init(AVCodecContext *avctx)
 
     c->avctx = avctx;
 
-    c->pic.data[0] = NULL;
     c->curfrm = 0;
     c->keyint = avctx->keyint_min;
     c->range = 8;