From 6413d91d08e020790fedf99d24f9545a772c829b Mon Sep 17 00:00:00 2001 From: avcoder Date: Thu, 10 Jul 2008 11:52:51 +0000 Subject: Remove useless casts. Patch by avcoder ffmpeg at gmail d0t com Originally committed as revision 14154 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/pngdec.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libavcodec/pngdec.c') diff --git a/libavcodec/pngdec.c b/libavcodec/pngdec.c index 14c67200ed..77ac0d155d 100644 --- a/libavcodec/pngdec.c +++ b/libavcodec/pngdec.c @@ -383,7 +383,7 @@ static int decode_frame(AVCodecContext *avctx, { PNGDecContext * const s = avctx->priv_data; AVFrame *picture = data; - AVFrame * const p= (AVFrame*)&s->picture; + AVFrame * const p= &s->picture; uint32_t tag, length; int ret, crc; @@ -582,8 +582,8 @@ static int decode_frame(AVCodecContext *avctx, } } exit_loop: - *picture= *(AVFrame*)&s->picture; - *data_size = sizeof(AVPicture); + *picture= s->picture; + *data_size = sizeof(AVFrame); ret = s->bytestream - s->bytestream_start; the_end: @@ -600,8 +600,8 @@ static int decode_frame(AVCodecContext *avctx, static av_cold int png_dec_init(AVCodecContext *avctx){ PNGDecContext *s = avctx->priv_data; - avcodec_get_frame_defaults((AVFrame*)&s->picture); - avctx->coded_frame= (AVFrame*)&s->picture; + avcodec_get_frame_defaults(&s->picture); + avctx->coded_frame= &s->picture; dsputil_init(&s->dsp, avctx); return 0; -- cgit v1.2.3