Skip to content

Commit

Permalink
staging/bcm2835-camera: Add support for MPEG_VIDEO_FORCE_KEY_FRAME
Browse files Browse the repository at this point in the history
Signed-off-by: Gergo Koteles <soyer@irl.hu>
  • Loading branch information
soyersoyer authored and popcornmix committed Dec 16, 2024
1 parent abd8b32 commit fa17eeb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* core driver device
*/

#define V4L2_CTRL_COUNT 31 /* number of v4l controls */
#define V4L2_CTRL_COUNT 32 /* number of v4l controls */

enum {
COMP_CAMERA = 0,
Expand Down
11 changes: 11 additions & 0 deletions drivers/staging/vc04_services/bcm2835-camera/controls.c
Original file line number Diff line number Diff line change
Expand Up @@ -1286,6 +1286,17 @@ static const struct bcm2835_mmal_v4l2_ctrl v4l2_ctrls[V4L2_CTRL_COUNT] = {
.mmal_id = MMAL_PARAMETER_VIDEO_ENCODE_MAX_QUANT,
.setter = ctrl_set_video_encode_param_output,
},
{
.id = V4L2_CID_MPEG_VIDEO_FORCE_KEY_FRAME,
.type = MMAL_CONTROL_TYPE_STD,
.min = 0,
.max = 0,
.def = 0,
.step = 0,
.imenu = NULL,
.mmal_id = MMAL_PARAMETER_VIDEO_REQUEST_I_FRAME,
.setter = ctrl_set_video_encode_param_output,
},
};

int bcm2835_mmal_set_all_camera_controls(struct bcm2835_mmal_dev *dev)
Expand Down

0 comments on commit fa17eeb

Please sign in to comment.