mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
sys/: Fix some spelling mistakes. Fixes #556802.
Original commit message from CVS: Patch by: Fabricio Godoy <skarllot at gmail dot com> * sys/oss/gstosssink.c: (gst_oss_sink_open): * sys/oss/gstosssrc.c: (gst_oss_src_open): * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap): * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists): Fix some spelling mistakes. Fixes #556802.
This commit is contained in:
parent
2b8b13e7a4
commit
5a4565868d
5 changed files with 14 additions and 4 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2008-11-13 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
|
Patch by: Fabricio Godoy <skarllot at gmail dot com>
|
||||||
|
|
||||||
|
* sys/oss/gstosssink.c: (gst_oss_sink_open):
|
||||||
|
* sys/oss/gstosssrc.c: (gst_oss_src_open):
|
||||||
|
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_mmap):
|
||||||
|
* sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
|
||||||
|
Fix some spelling mistakes. Fixes #556802.
|
||||||
|
|
||||||
2008-11-13 Stefan Kost <ensonic@users.sf.net>
|
2008-11-13 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
* gst/equalizer/GstIirEqualizer10Bands.prs:
|
* gst/equalizer/GstIirEqualizer10Bands.prs:
|
||||||
|
|
|
@ -418,7 +418,7 @@ busy:
|
||||||
no_permission:
|
no_permission:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_WRITE,
|
GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_WRITE,
|
||||||
(_("Could not open audio device for playback."
|
(_("Could not open audio device for playback. "
|
||||||
"You don't have permission to open the device.")),
|
"You don't have permission to open the device.")),
|
||||||
GST_ERROR_SYSTEM);
|
GST_ERROR_SYSTEM);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
|
@ -378,7 +378,7 @@ gst_oss_src_open (GstAudioSrc * asrc)
|
||||||
no_permission:
|
no_permission:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_READ,
|
GST_ELEMENT_ERROR (oss, RESOURCE, OPEN_READ,
|
||||||
(_("Could not open audio device for recording."
|
(_("Could not open audio device for recording. "
|
||||||
"You don't have permission to open the device.")),
|
"You don't have permission to open the device.")),
|
||||||
GST_ERROR_SYSTEM);
|
GST_ERROR_SYSTEM);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
|
@ -1304,7 +1304,7 @@ done:
|
||||||
size_error:
|
size_error:
|
||||||
{
|
{
|
||||||
GST_ELEMENT_ERROR (v4l2src, RESOURCE, READ,
|
GST_ELEMENT_ERROR (v4l2src, RESOURCE, READ,
|
||||||
(_("Error read()ing %d bytes on device '%s'."),
|
(_("Error reading %d bytes on device '%s'."),
|
||||||
v4l2src->frame_byte_size, v4l2src->v4l2object->videodev), (NULL));
|
v4l2src->frame_byte_size, v4l2src->v4l2object->videodev), (NULL));
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
|
|
|
@ -251,7 +251,7 @@ gst_v4l2_fill_lists (GstV4l2Object * v4l2object)
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
GST_ELEMENT_ERROR (e, RESOURCE, SETTINGS,
|
GST_ELEMENT_ERROR (e, RESOURCE, SETTINGS,
|
||||||
(_("Failed getting controls attributes on device '%s.'"),
|
(_("Failed getting controls attributes on device '%s'."),
|
||||||
v4l2object->videodev),
|
v4l2object->videodev),
|
||||||
("Failed querying control %d on device '%s'. (%d - %s)",
|
("Failed querying control %d on device '%s'. (%d - %s)",
|
||||||
n, v4l2object->videodev, errno, strerror (errno)));
|
n, v4l2object->videodev, errno, strerror (errno)));
|
||||||
|
|
Loading…
Reference in a new issue