diff options
author | Leo Liu <[email protected]> | 2017-08-15 14:21:16 -0400 |
---|---|---|
committer | Leo Liu <[email protected]> | 2017-08-21 10:09:09 -0400 |
commit | 11ccb56e9fe7a032a4f7a303580e4811717ae97b (patch) | |
tree | acac41398aaf81610d4967c905d1449ff75ce034 /src/gallium/auxiliary | |
parent | 2b1eacabfab56fedd084818b0ae7011875a1a20b (diff) |
vl: add MJPEG profile and format
v2: move util video change to here
Signed-off-by: Leo Liu <[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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_video.h b/src/gallium/auxiliary/util/u_video.h index 251e144c792..f3596e08a19 100644 --- a/src/gallium/auxiliary/util/u_video.h +++ b/src/gallium/auxiliary/util/u_video.h @@ -76,6 +76,9 @@ u_reduce_video_profile(enum pipe_video_profile profile) case PIPE_VIDEO_PROFILE_HEVC_MAIN_444: return PIPE_VIDEO_FORMAT_HEVC; + case PIPE_VIDEO_PROFILE_JPEG_BASELINE: + return PIPE_VIDEO_FORMAT_JPEG; + default: return PIPE_VIDEO_FORMAT_UNKNOWN; } |