Skip to content
Snippets Groups Projects
Commit 4fcbe3e3 authored by Ezequiel Garcia's avatar Ezequiel Garcia
Browse files

Demote level and profile controls messages


Now that this is working, the messages are too verbose.

Signed-off-by: default avatarEzequiel Garcia <ezequiel@collabora.com>
parent 12e1243c
Branches
Tags
No related merge requests found
...@@ -490,14 +490,14 @@ static int ioctl_s_ctrl_locked(struct encoder_context *ctx, int fd, ...@@ -490,14 +490,14 @@ static int ioctl_s_ctrl_locked(struct encoder_context *ctx, int fd,
runtime_param_ptr->keyframe_request = true; runtime_param_ptr->keyframe_request = true;
return 0; return 0;
case V4L2_CID_MPEG_VIDEO_BITRATE: case V4L2_CID_MPEG_VIDEO_BITRATE:
VLOG_FD(0, "Setting bitrate to %d", ctrl->value); VLOG_FD(2, "Setting bitrate to %d", ctrl->value);
runtime_param_ptr->bitrate = ctrl->value; runtime_param_ptr->bitrate = ctrl->value;
return 0; return 0;
case V4L2_CID_MPEG_VIDEO_PREPEND_SPSPPS_TO_IDR: case V4L2_CID_MPEG_VIDEO_PREPEND_SPSPPS_TO_IDR:
ctx->init_param.h264e.h264_sps_pps_before_idr = ctrl->value; ctx->init_param.h264e.h264_sps_pps_before_idr = ctrl->value;
return 0; return 0;
case V4L2_CID_MPEG_VIDEO_H264_PROFILE: case V4L2_CID_MPEG_VIDEO_H264_PROFILE:
VLOG_FD(0, "setting H264 profile %d.", ctrl->value); VLOG_FD(2, "setting H264 profile %d.", ctrl->value);
ctx->init_param.h264e.v4l2_h264_profile = ctrl->value; ctx->init_param.h264e.v4l2_h264_profile = ctrl->value;
break; break;
case V4L2_CID_MPEG_VIDEO_H264_LEVEL: case V4L2_CID_MPEG_VIDEO_H264_LEVEL:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment