mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
v4l2: Fix typo in debug messages
It's a decoder, not an encoder :) https://bugzilla.gnome.org/show_bug.cgi?id=795941
This commit is contained in:
parent
498ebc5503
commit
e555596d48
1 changed files with 2 additions and 2 deletions
|
@ -139,14 +139,14 @@ gst_v4l2_video_dec_open (GstVideoDecoder * decoder)
|
||||||
|
|
||||||
no_encoded_format:
|
no_encoded_format:
|
||||||
GST_ELEMENT_ERROR (self, RESOURCE, SETTINGS,
|
GST_ELEMENT_ERROR (self, RESOURCE, SETTINGS,
|
||||||
(_("Encoder on device %s has no supported input format"),
|
(_("Decoder on device %s has no supported input format"),
|
||||||
self->v4l2output->videodev), (NULL));
|
self->v4l2output->videodev), (NULL));
|
||||||
goto failure;
|
goto failure;
|
||||||
|
|
||||||
|
|
||||||
no_raw_format:
|
no_raw_format:
|
||||||
GST_ELEMENT_ERROR (self, RESOURCE, SETTINGS,
|
GST_ELEMENT_ERROR (self, RESOURCE, SETTINGS,
|
||||||
(_("Encoder on device %s has no supported output format"),
|
(_("Decoder on device %s has no supported output format"),
|
||||||
self->v4l2output->videodev), (NULL));
|
self->v4l2output->videodev), (NULL));
|
||||||
goto failure;
|
goto failure;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue