diff options
author | Christian König <[email protected]> | 2011-12-23 16:14:31 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2012-01-09 12:21:22 +0100 |
commit | 8c2bfa34a0d70ab08de44e3b091b3a097abbad97 (patch) | |
tree | bb5d09aa8b41d759dff310bbd230c32db797d2dc /src/gallium/auxiliary/vl/vl_decoder.h | |
parent | 37240d2132d25588ad05ae5394c237f45d8ad881 (diff) |
vl: replace decode_buffers with auxiliary data field
Based on patches from Maarten Lankhorst <[email protected]>
Signed-off-by: Christian König <[email protected]>
Acked-by: Maarten Lankhorst <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl/vl_decoder.h')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_decoder.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/vl/vl_decoder.h b/src/gallium/auxiliary/vl/vl_decoder.h index a9975169885..8fa6527ce54 100644 --- a/src/gallium/auxiliary/vl/vl_decoder.h +++ b/src/gallium/auxiliary/vl/vl_decoder.h @@ -38,12 +38,6 @@ bool vl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile); /** - * the desired number of buffers for optimal operation - */ -unsigned -vl_num_buffers_desired(struct pipe_screen *screen, enum pipe_video_profile profile); - -/** * standard implementation of pipe->create_video_decoder */ struct pipe_video_decoder * @@ -51,6 +45,7 @@ vl_create_decoder(struct pipe_context *pipe, enum pipe_video_profile profile, enum pipe_video_entrypoint entrypoint, enum pipe_video_chroma_format chroma_format, - unsigned width, unsigned height, unsigned max_references); + unsigned width, unsigned height, unsigned max_references, + bool expect_chunked_decode); #endif /* vl_decoder_h */ |