mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-15 09:34:17 +00:00
media: venus: helpers: add a new helper to set raw format
The new helper will has one more argument for buffer type, that way the decoder can configure the format on it's secondary output. Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org> Reviewed-by: Tomasz Figa <tfiga@chromium.org> Reviewed-by: Alexandre Courbot <acourbot@chromium.org> Tested-by: Alexandre Courbot <acourbot@chromium.org> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
404054e177
commit
ab97a3fb90
@ -412,6 +412,20 @@ static int session_register_bufs(struct venus_inst *inst)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static u32 to_hfi_raw_fmt(u32 v4l2_fmt)
|
||||
{
|
||||
switch (v4l2_fmt) {
|
||||
case V4L2_PIX_FMT_NV12:
|
||||
return HFI_COLOR_FORMAT_NV12;
|
||||
case V4L2_PIX_FMT_NV21:
|
||||
return HFI_COLOR_FORMAT_NV21;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int venus_helper_get_bufreq(struct venus_inst *inst, u32 type,
|
||||
struct hfi_buffer_requirements *req)
|
||||
{
|
||||
@ -493,35 +507,35 @@ int venus_helper_set_num_bufs(struct venus_inst *inst, unsigned int input_bufs,
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(venus_helper_set_num_bufs);
|
||||
|
||||
int venus_helper_set_raw_format(struct venus_inst *inst, u32 hfi_format,
|
||||
u32 buftype)
|
||||
{
|
||||
const u32 ptype = HFI_PROPERTY_PARAM_UNCOMPRESSED_FORMAT_SELECT;
|
||||
struct hfi_uncompressed_format_select fmt;
|
||||
|
||||
fmt.buffer_type = buftype;
|
||||
fmt.format = hfi_format;
|
||||
|
||||
return hfi_session_set_property(inst, ptype, &fmt);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(venus_helper_set_raw_format);
|
||||
|
||||
int venus_helper_set_color_format(struct venus_inst *inst, u32 pixfmt)
|
||||
{
|
||||
struct hfi_uncompressed_format_select fmt;
|
||||
u32 ptype = HFI_PROPERTY_PARAM_UNCOMPRESSED_FORMAT_SELECT;
|
||||
int ret;
|
||||
u32 hfi_format, buftype;
|
||||
|
||||
if (inst->session_type == VIDC_SESSION_TYPE_DEC)
|
||||
fmt.buffer_type = HFI_BUFFER_OUTPUT;
|
||||
buftype = HFI_BUFFER_OUTPUT;
|
||||
else if (inst->session_type == VIDC_SESSION_TYPE_ENC)
|
||||
fmt.buffer_type = HFI_BUFFER_INPUT;
|
||||
buftype = HFI_BUFFER_INPUT;
|
||||
else
|
||||
return -EINVAL;
|
||||
|
||||
switch (pixfmt) {
|
||||
case V4L2_PIX_FMT_NV12:
|
||||
fmt.format = HFI_COLOR_FORMAT_NV12;
|
||||
break;
|
||||
case V4L2_PIX_FMT_NV21:
|
||||
fmt.format = HFI_COLOR_FORMAT_NV21;
|
||||
break;
|
||||
default:
|
||||
hfi_format = to_hfi_raw_fmt(pixfmt);
|
||||
if (!hfi_format)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
ret = hfi_session_set_property(inst, ptype, &fmt);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
return venus_helper_set_raw_format(inst, hfi_format, buftype);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(venus_helper_set_color_format);
|
||||
|
||||
|
@ -40,6 +40,8 @@ int venus_helper_set_output_resolution(struct venus_inst *inst,
|
||||
u32 buftype);
|
||||
int venus_helper_set_num_bufs(struct venus_inst *inst, unsigned int input_bufs,
|
||||
unsigned int output_bufs);
|
||||
int venus_helper_set_raw_format(struct venus_inst *inst, u32 hfi_format,
|
||||
u32 buftype);
|
||||
int venus_helper_set_color_format(struct venus_inst *inst, u32 fmt);
|
||||
int venus_helper_set_dyn_bufmode(struct venus_inst *inst);
|
||||
int venus_helper_set_bufsize(struct venus_inst *inst, u32 bufsize, u32 buftype);
|
||||
|
Loading…
x
Reference in New Issue
Block a user