v4l2: Fix typo in debug messages
authorEdward Hervey <edward@centricular.com>
Sat, 12 May 2018 06:03:28 +0000 (08:03 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Sat, 12 May 2018 06:04:03 +0000 (08:04 +0200)
It's a decoder, not an encoder :)

https://bugzilla.gnome.org/show_bug.cgi?id=795941

sys/v4l2/gstv4l2videodec.c

index 09369cc..d14ad90 100644 (file)
@@ -139,14 +139,14 @@ gst_v4l2_video_dec_open (GstVideoDecoder * decoder)
 
 no_encoded_format:
   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));
   goto failure;
 
 
 no_raw_format:
   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));
   goto failure;