
Update debug packet structure to use waipio related debug packet structure. Also add HFI_INFORMATION_END cmd packets handling in reverse thread. Change-Id: Idbd421d8ada0e8c9d33df54e6f3708b1079c8b47 Signed-off-by: Akshata Sahukar <asahukar@codeaurora.org>
27 行
1.1 KiB
C
27 行
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _MSM_VDEC_H_
|
|
#define _MSM_VDEC_H_
|
|
|
|
#include "msm_vidc_core.h"
|
|
#include "msm_vidc_inst.h"
|
|
|
|
int msm_vdec_stop_input(struct msm_vidc_inst *inst);
|
|
int msm_vdec_start_input(struct msm_vidc_inst *inst);
|
|
int msm_vdec_stop_output(struct msm_vidc_inst *inst);
|
|
int msm_vdec_start_output(struct msm_vidc_inst *inst);
|
|
int msm_vdec_qbuf(struct msm_vidc_inst *inst, struct vb2_buffer *vb2);
|
|
int msm_vdec_s_fmt(struct msm_vidc_inst *inst, struct v4l2_format *f);
|
|
int msm_vdec_g_fmt(struct msm_vidc_inst *inst, struct v4l2_format *f);
|
|
int msm_vdec_enum_fmt(struct msm_vidc_inst *inst, struct v4l2_fmtdesc *f);
|
|
int msm_vdec_inst_init(struct msm_vidc_inst *inst);
|
|
int msm_vdec_input_port_settings_change(struct msm_vidc_inst *inst);
|
|
int msm_vdec_output_port_settings_change(struct msm_vidc_inst *inst);
|
|
int msm_vdec_process_cmd(struct msm_vidc_inst *inst, u32 cmd);
|
|
int msm_vdec_subscribe_port_settings_change(struct msm_vidc_inst *inst,
|
|
enum msm_vidc_port_type port);
|
|
|
|
#endif // _MSM_VDEC_H_
|