Commit 5b6ded99 authored by stefano's avatar stefano

Distinguish the error reporting for the cases of wrong size and wrong

timebase in the video4linux grab_read_header() function.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14646 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3f4fb57e
......@@ -78,10 +78,12 @@ static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
int j;
int vformat_num = sizeof(video_formats) / sizeof(video_formats[0]);
if (ap->width <= 0 || ap->height <= 0 || ap->time_base.den <= 0) {
av_log(s1, AV_LOG_ERROR, "Bad capture size (%dx%d) or wrong time base (%d)\n",
ap->width, ap->height, ap->time_base.den);
if (ap->width <= 0 || ap->height <= 0) {
av_log(s1, AV_LOG_ERROR, "Wrong size (%dx%d)\n", ap->width, ap->height);
return -1;
}
if (ap->time_base.den <= 0) {
av_log(s1, AV_LOG_ERROR, "Wrong time base (%d)\n", ap->time_base.den);
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