mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/v4l2_m2m: log planar mode used by driver
Signed-off-by: Aman Gupta <aman@tmm1.net>
This commit is contained in:
parent
c95b127733
commit
e8c5ce1acb
@ -76,7 +76,9 @@ static int v4l2_prepare_contexts(V4L2m2mContext* s)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
av_log(s->avctx, AV_LOG_INFO, "driver '%s' on card '%s'\n", cap.driver, cap.card);
|
||||
av_log(s->avctx, AV_LOG_INFO, "driver '%s' on card '%s' in %s mode\n", cap.driver, cap.card,
|
||||
v4l2_mplane_video(&cap) ? "mplane" :
|
||||
v4l2_splane_video(&cap) ? "splane" : "unknown");
|
||||
|
||||
if (v4l2_mplane_video(&cap)) {
|
||||
s->capture.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
|
||||
|
Loading…
Reference in New Issue
Block a user