mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
codecs: vp8decoder: Fix typo
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/987>
This commit is contained in:
parent
c6ec7f3ea4
commit
9f4ea145e0
1 changed files with 1 additions and 1 deletions
|
@ -482,7 +482,7 @@ gst_vp8_decoder_drain_output_queue (GstVp8Decoder * self, guint num,
|
||||||
while (gst_queue_array_get_length (priv->output_queue) > num) {
|
while (gst_queue_array_get_length (priv->output_queue) > num) {
|
||||||
GstVp8DecoderOutputFrame *output_frame = (GstVp8DecoderOutputFrame *)
|
GstVp8DecoderOutputFrame *output_frame = (GstVp8DecoderOutputFrame *)
|
||||||
gst_queue_array_pop_head_struct (priv->output_queue);
|
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 */
|
* the queue */
|
||||||
GstFlowReturn flow_ret = klass->output_picture (self,
|
GstFlowReturn flow_ret = klass->output_picture (self,
|
||||||
output_frame->frame, output_frame->picture);
|
output_frame->frame, output_frame->picture);
|
||||||
|
|
Loading…
Reference in a new issue