diff options
author | Boyuan Zhang <[email protected]> | 2016-12-16 15:22:13 -0500 |
---|---|---|
committer | Leo Liu <[email protected]> | 2017-02-01 14:32:32 -0500 |
commit | c29191eea8a92d6d25a82196f6ed35bb1f28c5cb (patch) | |
tree | 9a76106283bb55af8fe811649feb2eed964e85f0 /src/gallium | |
parent | 22841ec84afa097e721d15b2a257f97b15bf3372 (diff) |
radeon/uvd: add h264 constrained baseline support
Signed-off-by: Boyuan Zhang <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeon/radeon_uvd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/radeon_uvd.c b/src/gallium/drivers/radeon/radeon_uvd.c index 93fe147b5eb..f1339d121b7 100644 --- a/src/gallium/drivers/radeon/radeon_uvd.c +++ b/src/gallium/drivers/radeon/radeon_uvd.c @@ -478,6 +478,7 @@ static struct ruvd_h264 get_h264_msg(struct ruvd_decoder *dec, struct pipe_h264_ memset(&result, 0, sizeof(result)); switch (pic->base.profile) { case PIPE_VIDEO_PROFILE_MPEG4_AVC_BASELINE: + case PIPE_VIDEO_PROFILE_MPEG4_AVC_CONSTRAINED_BASELINE: result.profile = RUVD_H264_PROFILE_BASELINE; break; |