diff options
author | Leo Liu <[email protected]> | 2014-12-15 12:51:50 -0500 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-08-14 15:02:30 +0200 |
commit | 261ed775475db8d328a772fc4ff151d63969c84a (patch) | |
tree | 32fa1cc7006d2452274ebe8ea81c51dfec499ca5 /src/gallium/drivers/radeon/radeon_uvd.h | |
parent | 67586c4b40881940535658c3c89b5b1a42f94027 (diff) |
gallium/radeon: add h264 performance HW decoder support
v2: -make tonga use new h264 performance HW decoder;
-integrate it scaling buffer to msg_fb buffer
Signed-off-by: Leo Liu <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/radeon_uvd.h')
-rw-r--r-- | src/gallium/drivers/radeon/radeon_uvd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/radeon_uvd.h b/src/gallium/drivers/radeon/radeon_uvd.h index 7442865c9ec..5b6c65c81b0 100644 --- a/src/gallium/drivers/radeon/radeon_uvd.h +++ b/src/gallium/drivers/radeon/radeon_uvd.h @@ -62,6 +62,7 @@ #define RUVD_CMD_DECODING_TARGET_BUFFER 0x00000002 #define RUVD_CMD_FEEDBACK_BUFFER 0x00000003 #define RUVD_CMD_BITSTREAM_BUFFER 0x00000100 +#define RUVD_CMD_ITSCALING_TABLE_BUFFER 0x00000204 /* UVD message types */ #define RUVD_MSG_CREATE 0 @@ -73,6 +74,7 @@ #define RUVD_CODEC_VC1 0x00000001 #define RUVD_CODEC_MPEG2 0x00000003 #define RUVD_CODEC_MPEG4 0x00000004 +#define RUVD_CODEC_H264_PERF 0x00000007 /* UVD decode target buffer tiling mode */ #define RUVD_TILE_LINEAR 0x00000000 |