codecs: vp8decoder: Fix typo

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/987>
This commit is contained in:
Seungha Yang 2021-10-01 02:58:44 +09:00 committed by GStreamer Marge Bot
parent c6ec7f3ea4
commit 9f4ea145e0

View 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);