[FFmpeg-cvslog] r14664 - trunk/libavdevice/v4l2.c
stefano
subversion
Fri Aug 8 20:14:21 CEST 2008
Author: stefano
Date: Fri Aug 8 20:14:21 2008
New Revision: 14664
Log:
Cosmetics: make a v4l2 error message consistent with r14647.
--This line, and those below, will be ignored-
M v4l2.c
Modified:
trunk/libavdevice/v4l2.c
Modified: trunk/libavdevice/v4l2.c
==============================================================================
--- trunk/libavdevice/v4l2.c (original)
+++ trunk/libavdevice/v4l2.c Fri Aug 8 20:14:21 2008
@@ -510,7 +510,7 @@ static int v4l2_read_header(AVFormatCont
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;
}
More information about the ffmpeg-cvslog
mailing list