avctx->priv_data is initialized to 0, get rid of useless extra initialization.

Originally committed as revision 19062 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-05-31 11:41:49 +00:00
parent 7ffc844742
commit 4ad3df9da2
1 changed files with 0 additions and 7 deletions

View File

@ -443,13 +443,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
unsigned int max_basesize = FFALIGN(avctx->width, 4) * FFALIGN(avctx->height, 4) + AV_LZO_OUTPUT_PADDING;
unsigned int max_decomp_size;
c->pic.data[0] = NULL;
#if CONFIG_ZLIB_DECODER
// Needed if zlib unused or init aborted before inflateInit
memset(&c->zstream, 0, sizeof(z_stream));
#endif
if (avctx->extradata_size < 8) {
av_log(avctx, AV_LOG_ERROR, "Extradata size too small.\n");
return 1;