mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-17 23:17:41 +08:00
In the video4linux2 output device, log an error description in case of
ioctl failure in mmap_release_buffer(). Originally committed as revision 26214 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -324,7 +324,7 @@ static void mmap_release_buffer(AVPacket *pkt)
|
||||
|
||||
res = ioctl(fd, VIDIOC_QBUF, &buf);
|
||||
if (res < 0) {
|
||||
av_log(NULL, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF)\n");
|
||||
av_log(NULL, AV_LOG_ERROR, "ioctl(VIDIOC_QBUF): %s\n", strerror(errno));
|
||||
}
|
||||
pkt->data = NULL;
|
||||
pkt->size = 0;
|
||||
|
Reference in New Issue
Block a user