codecs: vp8decoder: Fix typo
authorSeungha Yang <seungha@centricular.com>
Thu, 30 Sep 2021 17:58:44 +0000 (02:58 +0900)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Sat, 2 Oct 2021 12:11:48 +0000 (12:11 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/987>

subprojects/gst-plugins-bad/gst-libs/gst/codecs/gstvp8decoder.c

index 0a22868..5150e73 100644 (file)
@@ -482,7 +482,7 @@ gst_vp8_decoder_drain_output_queue (GstVp8Decoder * self, guint num,
   while (gst_queue_array_get_length (priv->output_queue) > num) {
     GstVp8DecoderOutputFrame *output_frame = (GstVp8DecoderOutputFrame *)
         gst_queue_array_pop_head_struct (priv->output_queue);
-    /* Output queued fraems whatever the return value is, in order to empty
+    /* Output queued frames whatever the return value is, in order to empty
      * the queue */
     GstFlowReturn flow_ret = klass->output_picture (self,
         output_frame->frame, output_frame->picture);