diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-02-27 22:08:41 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-03-01 23:11:13 +0100 |
commit | 324deaa26883efbdac3b82d4b06eee0285826a7f (patch) | |
tree | fc9531cb91ac14c2135050c7020d0f03d2fcafa2 /libavcodec/indeo2.c | |
parent | 47c0ac96aa3530aad9fbc5250a531589f251d4d7 (diff) | |
download | ffmpeg-324deaa26883efbdac3b82d4b06eee0285826a7f.tar.gz |
Replace AVFrame pointer type punning by proper struct member assignments.
Diffstat (limited to 'libavcodec/indeo2.c')
-rw-r--r-- | libavcodec/indeo2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/indeo2.c b/libavcodec/indeo2.c index b114573ff0..6761c59eed 100644 --- a/libavcodec/indeo2.c +++ b/libavcodec/indeo2.c @@ -191,7 +191,7 @@ static int ir2_decode_frame(AVCodecContext *avctx, s->picture.data[1], s->picture.linesize[1], ir2_luma_table); } - *picture= *(AVFrame*)&s->picture; + *picture = s->picture; *data_size = sizeof(AVPicture); return buf_size; |