Skip to content

Commit 39a6b91

Browse files
Stanimir Varbanovmchehab
authored andcommitted
media: venus: venc_ctrls: Change default header mode
It is observed that on Venus v1 the default header-mode is producing a bitstream which is not playble. Change the default header-mode to joined with 1st frame. Fixes: 002c22b ("media: venus: venc: set inband mode property to FW.") Cc: [email protected] # v5.12 Signed-off-by: Stanimir Varbanov <[email protected]> Tested-by: Bryan O'Donoghue <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 3215887 commit 39a6b91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/media/platform/qcom/venus/venc_ctrls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ int venc_ctrl_init(struct venus_inst *inst)
396396
V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME,
397397
~((1 << V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE) |
398398
(1 << V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME)),
399-
V4L2_MPEG_VIDEO_HEADER_MODE_SEPARATE);
399+
V4L2_MPEG_VIDEO_HEADER_MODE_JOINED_WITH_1ST_FRAME);
400400

401401
v4l2_ctrl_new_std_menu(&inst->ctrl_handler, &venc_ctrl_ops,
402402
V4L2_CID_MPEG_VIDEO_MULTI_SLICE_MODE,

0 commit comments

Comments
 (0)