summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmeric Grange <emeric.grange@gmail.com>2012-01-31 17:55:55 +0100
committerEmeric Grange <emeric.grange@gmail.com>2012-06-24 16:57:33 +0200
commitfef471d933763beeb29997c60ae90d8cadd1a596 (patch)
tree44ffa1abaaf6357534d53526554e9fc49a5dd1bf
parent36b7a88bb6aafcc1fba0908b250b98792cd4accb (diff)
st/vdpau: Sync with last changes on libvdpau-vp8
Signed-off-by: Emeric Grange <emeric.grange@gmail.com>
-rw-r--r--src/gallium/include/pipe/p_video_state.h2
-rw-r--r--src/gallium/state_trackers/vdpau/decode.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/include/pipe/p_video_state.h b/src/gallium/include/pipe/p_video_state.h
index ca7dbe9fcb..bef306af10 100644
--- a/src/gallium/include/pipe/p_video_state.h
+++ b/src/gallium/include/pipe/p_video_state.h
@@ -291,7 +291,7 @@ struct pipe_vp8_picture_desc
unsigned key_frame;
unsigned show_frame;
- unsigned first_partition_size;
+ unsigned first_part_size;
unsigned horizontal_scale;
unsigned width;
diff --git a/src/gallium/state_trackers/vdpau/decode.c b/src/gallium/state_trackers/vdpau/decode.c
index 50c2a7d8c6..b0582617cd 100644
--- a/src/gallium/state_trackers/vdpau/decode.c
+++ b/src/gallium/state_trackers/vdpau/decode.c
@@ -435,7 +435,7 @@ vlVdpDecoderRenderVP8(struct pipe_vp8_picture_desc *picture,
/* Get back picture parameters */
picture->key_frame = picture_info->key_frame;
picture->show_frame = picture_info->show_frame;
- picture->first_partition_size = picture_info->first_part_size;
+ picture->first_part_size = picture_info->first_part_size;
picture->horizontal_scale = picture_info->horizontal_scale;
picture->width = picture_info->width;
picture->vertical_scale = picture_info->vertical_scale;