mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 19:43:40 +02:00
media: venus: return P010 as preferred format for 10 bit decode
If bit depth is detected as 10 bit by firmware, return P010 as preferred decoder format to the client. Signed-off-by: Dikshita Agarwal <quic_dikshita@quicinc.com> Signed-off-by: Stanimir Varbanov <stanimir.k.varbanov@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
996d215547
commit
08998cf30f
|
|
@ -1503,8 +1503,13 @@ static void vdec_event_change(struct venus_inst *inst,
|
|||
inst->out_width = ev_data->width;
|
||||
inst->out_height = ev_data->height;
|
||||
|
||||
if (inst->bit_depth != ev_data->bit_depth)
|
||||
if (inst->bit_depth != ev_data->bit_depth) {
|
||||
inst->bit_depth = ev_data->bit_depth;
|
||||
if (inst->bit_depth == VIDC_BITDEPTH_10)
|
||||
inst->fmt_cap = &vdec_formats[VENUS_FMT_P010];
|
||||
else
|
||||
inst->fmt_cap = &vdec_formats[VENUS_FMT_NV12];
|
||||
}
|
||||
|
||||
if (inst->pic_struct != ev_data->pic_struct)
|
||||
inst->pic_struct = ev_data->pic_struct;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user