diff options
author | Stephan Hilb <stephan@ecshi.net> | 2013-01-16 11:26:38 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-01-16 11:26:38 +0100 |
commit | 36810215fa259589b9f3b38922ca7e39ec61d4ca (patch) | |
tree | 1ea97c43ed5983021d088e5b675fed4e291f4ea6 /libavdevice/v4l2.c | |
parent | bbe56bcd6befb3e7d1bd498d8b827325d6089d78 (diff) | |
download | ffmpeg-36810215fa259589b9f3b38922ca7e39ec61d4ca.tar.gz |
lavd/v4l2: improve debug message
Reviewed-by: Stefano Sabatini
Diffstat (limited to 'libavdevice/v4l2.c')
-rw-r--r-- | libavdevice/v4l2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 7cb880ac77..26ff31c1e5 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -248,7 +248,8 @@ static int device_init(AVFormatContext *ctx, int *width, int *height, } if (fmt.fmt.pix.field == V4L2_FIELD_INTERLACED) { - av_log(ctx, AV_LOG_DEBUG, "The V4L2 driver using the interlaced mode"); + av_log(ctx, AV_LOG_DEBUG, + "The V4L2 driver is using the interlaced mode\n"); s->interlaced = 1; } |