mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
Make the VIDIOCMCAPTURE ioctl error message consistent with the other ones.
Originally committed as revision 16361 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
faf67322dc
commit
df77a6daab
@ -217,7 +217,7 @@ static int grab_read_header(AVFormatContext *s1, AVFormatParameters *ap)
|
||||
if (ioctl(video_fd, VIDIOCMCAPTURE, &s->gb_buf) < 0) {
|
||||
if (errno != EAGAIN) {
|
||||
fail1:
|
||||
av_log(s1, AV_LOG_ERROR, "Fatal: grab device does not support suitable format\n");
|
||||
av_log(s1, AV_LOG_ERROR, "VIDIOCMCAPTURE: %s\n", strerror(errno));
|
||||
} else {
|
||||
av_log(s1, AV_LOG_ERROR, "Fatal: grab device does not receive any video signal\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user