diff options
| author | Keiichi Watanabe <keiichiw@chromium.org> | 2018-06-18 03:58:53 -0400 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-07-04 09:32:22 -0400 |
| commit | 2a75364d09b05f257f4cd1f718e06e0247eb1dd3 (patch) | |
| tree | 432cdc7c6f7785ed9a0ac1cc83884007f9e74828 /include/uapi/linux | |
| parent | 5520b9467a39d5ec9ce9cd8a9ed01f826b817524 (diff) | |
media: v4l2-ctrl: Add control for VP9 profile
Add a new control V4L2_CID_MPEG_VIDEO_VP9_PROFILE for VP9 profiles. This control
allows selecting the desired profile for VP9 encoder and querying for supported
profiles by VP9 encoder/decoder.
Though this control is similar to V4L2_CID_MPEG_VIDEO_VP8_PROFILE, we need to
separate this control from it because supported profiles usually differ between
VP8 and VP9.
Signed-off-by: Keiichi Watanabe <keiichiw@chromium.org>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/v4l2-controls.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/uapi/linux/v4l2-controls.h b/include/uapi/linux/v4l2-controls.h index ab96795b2829..e4ee10ee917d 100644 --- a/include/uapi/linux/v4l2-controls.h +++ b/include/uapi/linux/v4l2-controls.h | |||
| @@ -597,6 +597,13 @@ enum v4l2_mpeg_video_vp8_profile { | |||
| 597 | }; | 597 | }; |
| 598 | /* Deprecated alias for compatibility reasons. */ | 598 | /* Deprecated alias for compatibility reasons. */ |
| 599 | #define V4L2_CID_MPEG_VIDEO_VPX_PROFILE V4L2_CID_MPEG_VIDEO_VP8_PROFILE | 599 | #define V4L2_CID_MPEG_VIDEO_VPX_PROFILE V4L2_CID_MPEG_VIDEO_VP8_PROFILE |
| 600 | #define V4L2_CID_MPEG_VIDEO_VP9_PROFILE (V4L2_CID_MPEG_BASE+512) | ||
| 601 | enum v4l2_mpeg_video_vp9_profile { | ||
| 602 | V4L2_MPEG_VIDEO_VP9_PROFILE_0 = 0, | ||
| 603 | V4L2_MPEG_VIDEO_VP9_PROFILE_1 = 1, | ||
| 604 | V4L2_MPEG_VIDEO_VP9_PROFILE_2 = 2, | ||
| 605 | V4L2_MPEG_VIDEO_VP9_PROFILE_3 = 3, | ||
| 606 | }; | ||
| 600 | 607 | ||
| 601 | /* CIDs for HEVC encoding. */ | 608 | /* CIDs for HEVC encoding. */ |
| 602 | 609 | ||
