1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * linux/drivers/media/platform/samsung/s5p-mfc/s5p_mfc_enc.h 4 * 5 * Copyright (C) 2011 Samsung Electronics Co., Ltd. 6 * http://www.samsung.com/ 7 */ 8 9 #ifndef S5P_MFC_ENC_H_ 10 #define S5P_MFC_ENC_H_ 11 12 const struct s5p_mfc_codec_ops *get_enc_codec_ops(void); 13 struct vb2_ops *get_enc_queue_ops(void); 14 const struct v4l2_ioctl_ops *get_enc_v4l2_ioctl_ops(void); 15 struct s5p_mfc_fmt *get_enc_def_fmt(bool src); 16 int s5p_mfc_enc_ctrls_setup(struct s5p_mfc_ctx *ctx); 17 void s5p_mfc_enc_ctrls_delete(struct s5p_mfc_ctx *ctx); 18 void s5p_mfc_enc_init(struct s5p_mfc_ctx *ctx); 19 20 #endif /* S5P_MFC_ENC_H_ */ 21