From: Maarten Lankhorst Date: Mon, 31 Oct 2011 09:24:34 +0000 (+0100) Subject: state_trackers/vdpau: Add num_slices to mpeg12 picture structure X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c4d47f065ae2a015a9d2e9a060d71e04d5935c2b;p=mesa.git state_trackers/vdpau: Add num_slices to mpeg12 picture structure Bitstream parsers might need that field. Signed-off-by: Maarten Lankhorst --- diff --git a/src/gallium/include/pipe/p_video_state.h b/src/gallium/include/pipe/p_video_state.h index e8087000f70..53da1d85119 100644 --- a/src/gallium/include/pipe/p_video_state.h +++ b/src/gallium/include/pipe/p_video_state.h @@ -134,6 +134,7 @@ struct pipe_mpeg12_picture_desc unsigned concealment_motion_vectors; unsigned intra_dc_precision; unsigned f_code[2][2]; + unsigned num_slices; }; struct pipe_mpeg12_quant_matrix diff --git a/src/gallium/state_trackers/vdpau/decode.c b/src/gallium/state_trackers/vdpau/decode.c index aacb9ea28dd..7689ce27793 100644 --- a/src/gallium/state_trackers/vdpau/decode.c +++ b/src/gallium/state_trackers/vdpau/decode.c @@ -233,6 +233,7 @@ vlVdpDecoderRenderMpeg12(struct pipe_video_decoder *decoder, picture.f_code[0][1] = picture_info->f_code[0][1] - 1; picture.f_code[1][0] = picture_info->f_code[1][0] - 1; picture.f_code[1][1] = picture_info->f_code[1][1] - 1; + picture.num_slices = picture_info->slice_count; decoder->set_picture_parameters(decoder, &picture.base);