diff options
author | Marek Olšák <[email protected]> | 2014-01-22 02:12:51 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-01-28 01:39:46 +0100 |
commit | d41bd71bcfa43b3aad5abbb0da9f716e631042c4 (patch) | |
tree | c99a53445eb8cef35ec69c4027b5e35bfdfd4a3c /src/gallium/drivers/radeon/radeon_uvd.h | |
parent | a4c218f398a6176f2ecbe7e295020d348670a957 (diff) |
r600g,radeonsi: consolidate get_paramf and get_video_param
radeonsi now reports PIPE_VIDEO_CAP_SUPPORTS_PROGRESSIVE = true if UVD support
isn't available. It's what all the other drivers do.
Also, some #include directives were missing in radeon_uvd.h.
Reviewed-by: Michel Dänzer <[email protected]>
Reviewed-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/radeon_uvd.h')
-rw-r--r-- | src/gallium/drivers/radeon/radeon_uvd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/radeon_uvd.h b/src/gallium/drivers/radeon/radeon_uvd.h index b0135bac5d7..6278f12a8ae 100644 --- a/src/gallium/drivers/radeon/radeon_uvd.h +++ b/src/gallium/drivers/radeon/radeon_uvd.h @@ -34,6 +34,9 @@ #ifndef RADEON_UVD_H #define RADEON_UVD_H +#include "../../winsys/radeon/drm/radeon_winsys.h" +#include "vl/vl_video_buffer.h" + /* UVD uses PM4 packet type 0 and 2 */ #define RUVD_PKT_TYPE_S(x) (((x) & 0x3) << 30) #define RUVD_PKT_TYPE_G(x) (((x) >> 30) & 0x3) |