diff options
author | Boyuan Zhang <[email protected]> | 2016-12-16 15:19:25 -0500 |
---|---|---|
committer | Leo Liu <[email protected]> | 2017-02-01 14:32:32 -0500 |
commit | 22841ec84afa097e721d15b2a257f97b15bf3372 (patch) | |
tree | 5a333eecb0f3c327085de61404d4dee25cd4ad6c /src/gallium/auxiliary | |
parent | f5f8eb2c7cb425f63798daaf151cb517c8bd6a0d (diff) |
vl: add h264 constrained baseline profile
Signed-off-by: Boyuan Zhang <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_video.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_video.h b/src/gallium/auxiliary/util/u_video.h index 2c02156e32d..99a8fd6e4f3 100644 --- a/src/gallium/auxiliary/util/u_video.h +++ b/src/gallium/auxiliary/util/u_video.h @@ -60,6 +60,7 @@ u_reduce_video_profile(enum pipe_video_profile profile) return PIPE_VIDEO_FORMAT_VC1; case PIPE_VIDEO_PROFILE_MPEG4_AVC_BASELINE: + case PIPE_VIDEO_PROFILE_MPEG4_AVC_CONSTRAINED_BASELINE: case PIPE_VIDEO_PROFILE_MPEG4_AVC_MAIN: case PIPE_VIDEO_PROFILE_MPEG4_AVC_EXTENDED: case PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH: |