The H264 interface is now ready to be part of the official public API. In addition, sanitize header includes. Signed-off-by: Ezequiel Garcia <ezequiel@xxxxxxxxxxxxx> --- drivers/staging/media/hantro/hantro_hw.h | 5 ++--- include/media/v4l2-ctrls.h | 3 ++- include/media/v4l2-h264.h | 2 +- .../{media/h264-ctrls.h => uapi/linux/v4l2-h264-ctrls.h} | 8 ++------ 4 files changed, 7 insertions(+), 11 deletions(-) rename include/{media/h264-ctrls.h => uapi/linux/v4l2-h264-ctrls.h} (96%) diff --git a/drivers/staging/media/hantro/hantro_hw.h b/drivers/staging/media/hantro/hantro_hw.h index 4053d8710e04..48d5be144319 100644 --- a/drivers/staging/media/hantro/hantro_hw.h +++ b/drivers/staging/media/hantro/hantro_hw.h @@ -11,9 +11,8 @@ #include <linux/interrupt.h> #include <linux/v4l2-controls.h> -#include <media/h264-ctrls.h> -#include <media/mpeg2-ctrls.h> -#include <media/vp8-ctrls.h> + +#include <media/v4l2-ctrls.h> #include <media/videobuf2-core.h> #define DEC_8190_ALIGN_MASK 0x07U diff --git a/include/media/v4l2-ctrls.h b/include/media/v4l2-ctrls.h index f40e2cbb21d3..fc725ba2ebd8 100644 --- a/include/media/v4l2-ctrls.h +++ b/include/media/v4l2-ctrls.h @@ -13,13 +13,14 @@ #include <linux/videodev2.h> #include <media/media-request.h> +#include <linux/v4l2-h264-ctrls.h> + /* * Include the stateless codec compound control definitions. * This will move to the public headers once this API is fully stable. */ #include <media/mpeg2-ctrls.h> #include <media/fwht-ctrls.h> -#include <media/h264-ctrls.h> #include <media/vp8-ctrls.h> #include <media/hevc-ctrls.h> diff --git a/include/media/v4l2-h264.h b/include/media/v4l2-h264.h index f08ba181263d..d2314f4d4490 100644 --- a/include/media/v4l2-h264.h +++ b/include/media/v4l2-h264.h @@ -10,7 +10,7 @@ #ifndef _MEDIA_V4L2_H264_H #define _MEDIA_V4L2_H264_H -#include <media/h264-ctrls.h> +#include <media/v4l2-ctrls.h> /** * struct v4l2_h264_reflist_builder - Reference list builder object diff --git a/include/media/h264-ctrls.h b/include/uapi/linux/v4l2-h264-ctrls.h similarity index 96% rename from include/media/h264-ctrls.h rename to include/uapi/linux/v4l2-h264-ctrls.h index 6446ec9f283d..a06f60670d68 100644 --- a/include/media/h264-ctrls.h +++ b/include/uapi/linux/v4l2-h264-ctrls.h @@ -2,14 +2,10 @@ /* * These are the H.264 state controls for use with stateless H.264 * codec drivers. - * - * It turns out that these structs are not stable yet and will undergo - * more changes. So keep them private until they are stable and ready to - * become part of the official public API. */ -#ifndef _H264_CTRLS_H_ -#define _H264_CTRLS_H_ +#ifndef __LINUX_V4L2_H264_CONTROLS_H +#define __LINUX_V4L2_H264_CONTROLS_H #include <linux/videodev2.h> -- 2.26.0.rc2