diff options
author | Diego Biurrun | 2012-02-27 22:08:41 +0100 |
---|---|---|
committer | Diego Biurrun | 2012-03-01 23:11:13 +0100 |
commit | 324deaa26883efbdac3b82d4b06eee0285826a7f (patch) | |
tree | fc9531cb91ac14c2135050c7020d0f03d2fcafa2 /libavcodec/cavsdec.c | |
parent | 47c0ac96aa3530aad9fbc5250a531589f251d4d7 (diff) |
Replace AVFrame pointer type punning by proper struct member assignments.
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r-- | libavcodec/cavsdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index f59c73ad1c..1da4eb1922 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -655,7 +655,7 @@ static int cavs_decode_frame(AVCodecContext * avctx,void *data, int *data_size, if (buf_size == 0) { if (!s->low_delay && h->DPB[0].f.data[0]) { *data_size = sizeof(AVPicture); - *picture = *(AVFrame *) &h->DPB[0]; + *picture = h->DPB[0].f; } return 0; } @@ -691,12 +691,12 @@ static int cavs_decode_frame(AVCodecContext * avctx,void *data, int *data_size, *data_size = sizeof(AVPicture); if(h->pic_type != AV_PICTURE_TYPE_B) { if(h->DPB[1].f.data[0]) { - *picture = *(AVFrame *) &h->DPB[1]; + *picture = h->DPB[1].f; } else { *data_size = 0; } } else - *picture = *(AVFrame *) &h->picture; + *picture = h->picture.f; break; case EXT_START_CODE: //mpeg_decode_extension(avctx,buf_ptr, input_size); |