Commit 52f88714 authored by stefano's avatar stefano

Cosmetics: make a v4l2 error message consistent with r14647.

--This line, and those below, will be ignored-

M    v4l2.c


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14664 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1354e64b
...@@ -510,7 +510,7 @@ static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap) ...@@ -510,7 +510,7 @@ static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap)
frame_rate_base = ap->time_base.num; frame_rate_base = ap->time_base.num;
if((unsigned)width > 32767 || (unsigned)height > 32767) { 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; return -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment