qos: _qos_full -> _qos

This commit is contained in:
Wim Taymans 2011-05-09 18:53:03 +02:00
parent 816f4e791d
commit bdb4676455
3 changed files with 6 additions and 4 deletions

View file

@ -544,7 +544,7 @@ gst_visual_src_event (GstPad * pad, GstEvent * event)
GstClockTimeDiff diff;
GstClockTime timestamp;
gst_event_parse_qos (event, &proportion, &diff, &timestamp);
gst_event_parse_qos (event, NULL, &proportion, &diff, &timestamp);
/* save stuff for the _chain function */
GST_OBJECT_LOCK (visual);

View file

@ -574,7 +574,7 @@ theora_dec_src_event (GstPad * pad, GstEvent * event)
GstClockTimeDiff diff;
GstClockTime timestamp;
gst_event_parse_qos (event, &proportion, &diff, &timestamp);
gst_event_parse_qos (event, NULL, &proportion, &diff, &timestamp);
/* we cannot randomly skip frame decoding since we don't have
* B frames. we can however use the timestamp and diff to not

View file

@ -211,7 +211,7 @@ gst_stream_synchronizer_src_event (GstPad * pad, GstEvent * event)
gint64 running_time_diff;
GstStream *stream;
gst_event_parse_qos (event, &proportion, &diff, &timestamp);
gst_event_parse_qos (event, NULL, &proportion, &diff, &timestamp);
gst_event_unref (event);
GST_STREAM_SYNCHRONIZER_LOCK (self);
@ -245,7 +245,9 @@ gst_stream_synchronizer_src_event (GstPad * pad, GstEvent * event)
goto out;
}
event = gst_event_new_qos (proportion, diff, timestamp);
event =
gst_event_new_qos (GST_QOS_TYPE_UNDERFLOW, proportion, diff,
timestamp);
break;
}
default: