From d7647e7c90f5f8990ee64d3a51af63b57faff5d5 Mon Sep 17 00:00:00 2001 From: Maxime Jourdan Date: Tue, 3 Mar 2020 15:33:20 +0100 Subject: media: meson: vdec: add H.264 decoding support Add support for the H264 compressed format (V4L2_PIX_FMT_H264). Signed-off-by: Maxime Jourdan Signed-off-by: Neil Armstrong Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- drivers/staging/media/meson/vdec/codec_h264.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 drivers/staging/media/meson/vdec/codec_h264.h (limited to 'drivers/staging/media/meson/vdec/codec_h264.h') diff --git a/drivers/staging/media/meson/vdec/codec_h264.h b/drivers/staging/media/meson/vdec/codec_h264.h new file mode 100644 index 000000000000..7cb4fb86ff36 --- /dev/null +++ b/drivers/staging/media/meson/vdec/codec_h264.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2019 BayLibre, SAS + * Author: Maxime Jourdan + */ + +#ifndef __MESON_VDEC_CODEC_H264_H_ +#define __MESON_VDEC_CODEC_H264_H_ + +#include "vdec.h" + +extern struct amvdec_codec_ops codec_h264_ops; + +#endif -- cgit