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