summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJulian Scheel <julian@jusst.de>2008-12-03 14:24:34 +0000
committerJulian Scheel <julian@jusst.de>2008-12-03 14:24:34 +0000
commit6d5a3cd061535826de2b18ca75e26a0e9b0affad (patch)
tree7df0a23c0734275b125e4d9d120effd2bd3c149a /src
parent0ce90b77d375430b099428bccc9c54e7c2d49e33 (diff)
downloadxine-lib-6d5a3cd061535826de2b18ca75e26a0e9b0affad.tar.gz
xine-lib-6d5a3cd061535826de2b18ca75e26a0e9b0affad.tar.bz2
Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/libvdpau/vdpau_h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libvdpau/vdpau_h264.c b/src/libvdpau/vdpau_h264.c
index b3413f3c4..93702b26e 100644
--- a/src/libvdpau/vdpau_h264.c
+++ b/src/libvdpau/vdpau_h264.c
@@ -275,8 +275,8 @@ static void vdpau_h264_decode_data (video_decoder_t *this_gen,
pic.deblocking_filter_control_present_flag = pps->deblocking_filter_control_present_flag;
pic.redundant_pic_cnt_present_flag = pps->redundant_pic_cnt_present_flag;
memcpy(pic.scaling_lists_4x4, pps->scaling_lists_4x4, sizeof(pic.scaling_lists_4x4));
- memcpy(pic.scaling_lists_8x8, pps->scaling_lists_8x8, 2*64);
- memcpy(pic.referenceFrames, this->reference_frames, sizeof(pic.scaling_lists_8x8));
+ memcpy(pic.scaling_lists_8x8, pps->scaling_lists_8x8, sizeof(pic.scaling_lists_8x8));
+ memcpy(pic.referenceFrames, this->reference_frames, sizeof(pic.referenceFrames));
if(this->decoder_started || pic.is_reference) {
this->nal_parser->is_idr = 0;