diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-08-08 18:14:21 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-08-08 18:14:21 +0000 |
commit | 3241ec1d6f2bddb7416438ad28503df9b203c956 (patch) | |
tree | 4d779931f7f90b05be07522c3d54e129fab280fa /libavdevice/v4l2.c | |
parent | c57c4897533d6cb1382f1e13aa6cd04ab963e48d (diff) | |
download | ffmpeg-3241ec1d6f2bddb7416438ad28503df9b203c956.tar.gz |
Cosmetics: make a v4l2 error message consistent with r14647.
Originally committed as revision 14664 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavdevice/v4l2.c')
-rw-r--r-- | libavdevice/v4l2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index f1aad38135..0b03640e7d 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -510,7 +510,7 @@ static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap) frame_rate_base = ap->time_base.num; if((unsigned)width > 32767 || (unsigned)height > 32767) { - av_log(s1, AV_LOG_ERROR, "Wrong size %dx%d\n", width, height); + av_log(s1, AV_LOG_ERROR, "Wrong size (%dx%d)\n", width, height); return -1; } |