Remove useless assignment during initialization for some decoders

Originally committed as revision 18680 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov
2009-04-24 14:09:24 +00:00
parent f83c57735e
commit 1c86db80a9
12 changed files with 0 additions and 15 deletions

View 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;
}