libcamera: pipeline_handler: Remove duplicated log from uvc and vimc
The uvcvideo and vimc pipeline handlers print the requested resolution in their configureStreams() operation. This duplicates a generic log statement in the Camera::configureStreams() method, remove it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
parent
7022136aaa
commit
baad55d009
2 changed files with 0 additions and 6 deletions
|
@ -109,9 +109,6 @@ int PipelineHandlerUVC::configureStreams(Camera *camera,
|
||||||
const StreamConfiguration *cfg = &config[&data->stream_];
|
const StreamConfiguration *cfg = &config[&data->stream_];
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
LOG(UVC, Debug) << "Configure the camera for resolution "
|
|
||||||
<< cfg->width << "x" << cfg->height;
|
|
||||||
|
|
||||||
V4L2DeviceFormat format = {};
|
V4L2DeviceFormat format = {};
|
||||||
format.width = cfg->width;
|
format.width = cfg->width;
|
||||||
format.height = cfg->height;
|
format.height = cfg->height;
|
||||||
|
|
|
@ -109,9 +109,6 @@ int PipelineHandlerVimc::configureStreams(Camera *camera,
|
||||||
const StreamConfiguration *cfg = &config[&data->stream_];
|
const StreamConfiguration *cfg = &config[&data->stream_];
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
LOG(VIMC, Debug) << "Configure the camera for resolution "
|
|
||||||
<< cfg->width << "x" << cfg->height;
|
|
||||||
|
|
||||||
V4L2DeviceFormat format = {};
|
V4L2DeviceFormat format = {};
|
||||||
format.width = cfg->width;
|
format.width = cfg->width;
|
||||||
format.height = cfg->height;
|
format.height = cfg->height;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue