Browse Source

avcodec/v4l2_m2m: log planar mode used by driver

Signed-off-by: Aman Gupta <aman@tmm1.net>
tags/n4.3
Aman Gupta 6 years ago
parent
commit
e8c5ce1acb
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavcodec/v4l2_m2m.c

+ 3
- 1
libavcodec/v4l2_m2m.c View File

@@ -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…
Cancel
Save