diff options
author | Ivo van Poorten <ivop@euronet.nl> | 2007-12-26 16:24:49 +0000 |
---|---|---|
committer | Ivo van Poorten <ivop@euronet.nl> | 2007-12-26 16:24:49 +0000 |
commit | d6bb52acdcde23fa4e4094a30f4a38dcab123e0d (patch) | |
tree | ac8f75aafb2eeaf0fdeb8c73acf2c7bca6066a27 | |
parent | 0fd0cae082426d214a10688e83df4ba6cb19ec03 (diff) | |
download | ffmpeg-d6bb52acdcde23fa4e4094a30f4a38dcab123e0d.tar.gz |
remove useless assignment
Originally committed as revision 11319 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/txd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/txd.c b/libavcodec/txd.c index 9c60b4c03f..fd0d7ae93a 100644 --- a/libavcodec/txd.c +++ b/libavcodec/txd.c @@ -33,7 +33,6 @@ static int txd_init(AVCodecContext *avctx) { avcodec_get_frame_defaults(&s->picture); avctx->coded_frame = &s->picture; - s->picture.data[0] = NULL; return 0; } |