mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
v4l2allocator: Fix spelling of queueing
Didn't know which one to choose between queuing and queueing, so I picked the one with the biggest amount of vowels in a row ;-P (both are acceptable apparently)
This commit is contained in:
parent
905e28a0f3
commit
7d7074cef0
1 changed files with 1 additions and 1 deletions
|
@ -1241,7 +1241,7 @@ gst_v4l2_allocator_qbuf (GstV4l2Allocator * allocator,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (v4l2_ioctl (allocator->video_fd, VIDIOC_QBUF, &group->buffer) < 0) {
|
if (v4l2_ioctl (allocator->video_fd, VIDIOC_QBUF, &group->buffer) < 0) {
|
||||||
GST_ERROR_OBJECT (allocator, "failed queing buffer %i: %s",
|
GST_ERROR_OBJECT (allocator, "failed queueing buffer %i: %s",
|
||||||
group->buffer.index, g_strerror (errno));
|
group->buffer.index, g_strerror (errno));
|
||||||
ret = FALSE;
|
ret = FALSE;
|
||||||
if (IS_QUEUED (group->buffer)) {
|
if (IS_QUEUED (group->buffer)) {
|
||||||
|
|
Loading…
Reference in a new issue