diff options
author | Christian König <[email protected]> | 2014-09-18 11:57:46 -0400 |
---|---|---|
committer | Leo Liu <[email protected]> | 2014-10-01 13:21:36 -0400 |
commit | 7913c8943a1d1dd1b3f77f34bb4b0108a10a1d20 (patch) | |
tree | e925a4235edcab230eb1056aa9138ae743f913cd /src/gallium/state_trackers/va/surface.c | |
parent | 1be55158381f509d420e42f40018ec95fe329f5b (diff) |
st/va: implement Picture functions for mpeg2 h264 and vc1
This patch implements codec for mpeg2 h264 and vc1,
populates codec parameters and pass them to HW driver.
Signed-off-by: Christian König <[email protected]>
Signed-off-by: Leo Liu <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/va/surface.c')
-rw-r--r-- | src/gallium/state_trackers/va/surface.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/va/surface.c b/src/gallium/state_trackers/va/surface.c index 6f1ddf9a248..0d0b86321b1 100644 --- a/src/gallium/state_trackers/va/surface.c +++ b/src/gallium/state_trackers/va/surface.c @@ -27,6 +27,7 @@ **************************************************************************/ #include "pipe/p_screen.h" +#include "pipe/p_video_codec.h" #include "util/u_memory.h" #include "util/u_handle_table.h" @@ -79,6 +80,7 @@ vlVaCreateSurfaces(VADriverContextP ctx, int width, int height, int format, goto no_res; surf->templat = templat; + surf->buffer = drv->pipe->create_video_buffer(drv->pipe, &templat); surfaces[i] = handle_table_add(drv->htab, surf); } |