diff options
author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-01-12 14:50:21 +0200 |
---|---|---|
committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-01-12 14:50:21 +0200 |
commit | 9c673be406d023c46e816a0a89bf8171a5be7e79 (patch) | |
tree | efa8728316c73ab432ed47a49b174cd404bb6451 | |
parent | be17259906a90ce5f6338e56d397cb99be4b3cbc (diff) | |
download | xine-lib-9c673be406d023c46e816a0a89bf8171a5be7e79.tar.gz xine-lib-9c673be406d023c46e816a0a89bf8171a5be7e79.tar.bz2 |
Fixed pointer cast
-rw-r--r-- | src/video_out/video_out_xvmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_xvmc.c b/src/video_out/video_out_xvmc.c index f06f0cf3f..aeb50271a 100644 --- a/src/video_out/video_out_xvmc.c +++ b/src/video_out/video_out_xvmc.c @@ -790,7 +790,7 @@ static void xvmc_update_frame_format (vo_driver_t *this_gen, frame->ratio = ratio; } - xvmc->macroblocks = (xine_macroblocks_t *)&this->macroblocks; + xvmc->macroblocks = &this->macroblocks.xine_mc; this->macroblocks.num_blocks = 0; this->macroblocks.macroblockptr = this->macroblocks.macroblockbaseptr; this->macroblocks.xine_mc.blockptr = |