Browse Source

lavd/v4l2: fix printing of list_formats table

In particular we needed a '\n' at the end of the line when the format is emulated.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Giorgio Vazzana Michael Niedermayer 12 years ago
parent
commit
5009863ab5
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavdevice/v4l2.c

+ 2
- 4
libavdevice/v4l2.c View File

@@ -371,10 +371,8 @@ static void list_formats(AVFormatContext *ctx, int fd, int type)
}

#ifdef V4L2_FMT_FLAG_EMULATED
if (vfd.flags & V4L2_FMT_FLAG_EMULATED) {
av_log(ctx, AV_LOG_WARNING, "%s", "Emulated");
continue;
}
if (vfd.flags & V4L2_FMT_FLAG_EMULATED)
av_log(ctx, AV_LOG_INFO, " Emulated :");
#endif
#if HAVE_STRUCT_V4L2_FRMIVALENUM_DISCRETE
list_framesizes(ctx, fd, vfd.pixelformat);


Loading…
Cancel
Save