summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2005-11-22 11:57:51 +0000
committerAndy Wingo <wingo@pobox.com>2005-11-22 11:57:51 +0000
commitee0e50b84d25f2886d41c9629c01edc376237fcd (patch)
tree6e3ef89bf1865953d42bfa95c6978adbcdc9741d
parentba572e2d2ced78513a341e0f5edbec9ef71688fc (diff)
downloadgst-plugins-bad-ee0e50b84d25f2886d41c9629c01edc376237fcd.tar.gz
gst-plugins-bad-ee0e50b84d25f2886d41c9629c01edc376237fcd.tar.bz2
gst-plugins-bad-ee0e50b84d25f2886d41c9629c01edc376237fcd.zip
ext/faad/gstfaad.c (gst_faad_event) ext/ivorbis/vorbisfile.c (gst_ivorbisfile_loop) gst/qtdemux/qtdemux.c (gst_qtdemu...
Original commit message from CVS: 2005-11-22 Andy Wingo <wingo@pobox.com> * ext/faad/gstfaad.c (gst_faad_event) * ext/ivorbis/vorbisfile.c (gst_ivorbisfile_loop) * gst/qtdemux/qtdemux.c (gst_qtdemux_loop_header) * gst/speed/gstspeed.c (speed_sink_event) * gst/tta/gstttaparse.c (gst_tta_parse_src_event) (gst_tta_parse_parse_header): Run update-funcnames.
-rw-r--r--ChangeLog9
-rw-r--r--ext/faad/gstfaad.c4
-rw-r--r--ext/ivorbis/vorbisfile.c2
-rw-r--r--gst/qtdemux/qtdemux.c2
-rw-r--r--gst/speed/gstspeed.c4
-rw-r--r--gst/tta/gstttaparse.c4
6 files changed, 17 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 9a73fff0..38b2d790 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-11-22 Andy Wingo <wingo@pobox.com>
+
+ * ext/faad/gstfaad.c (gst_faad_event)
+ * ext/ivorbis/vorbisfile.c (gst_ivorbisfile_loop)
+ * gst/qtdemux/qtdemux.c (gst_qtdemux_loop_header)
+ * gst/speed/gstspeed.c (speed_sink_event)
+ * gst/tta/gstttaparse.c (gst_tta_parse_src_event)
+ (gst_tta_parse_parse_header): Run update-funcnames.
+
2005-11-21 Michael Smith <msmith@fluendo.com>
* ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_event):
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c
index 85e20ce7..2dc96566 100644
--- a/ext/faad/gstfaad.c
+++ b/ext/faad/gstfaad.c
@@ -660,7 +660,7 @@ gst_faad_event (GstPad * pad, GstEvent * event)
gint64 start, end, base;
gdouble rate;
- gst_event_parse_newsegment (event, &is_update, &rate, &fmt, &start,
+ gst_event_parse_new_segment (event, &is_update, &rate, &fmt, &start,
&end, &base);
if (fmt == GST_FORMAT_TIME) {
GST_DEBUG ("Got NEWSEGMENT event in GST_FORMAT_TIME, passing on (%"
@@ -685,7 +685,7 @@ gst_faad_event (GstPad * pad, GstEvent * event)
("no average bitrate yet, sending newsegment with start at 0");
}
new_ev =
- gst_event_new_newsegment (is_update, rate, GST_FORMAT_TIME,
+ gst_event_new_new_segment (is_update, rate, GST_FORMAT_TIME,
new_start, new_end, base);
gst_event_unref (event);
event = new_ev;
diff --git a/ext/ivorbis/vorbisfile.c b/ext/ivorbis/vorbisfile.c
index 55c67adc..22668a8a 100644
--- a/ext/ivorbis/vorbisfile.c
+++ b/ext/ivorbis/vorbisfile.c
@@ -782,7 +782,7 @@ gst_ivorbisfile_loop (GstPad * pad)
samples = (gint64) (ov_pcm_tell (&ivorbisfile->vf));
event =
- gst_event_new_newsegment (FALSE, 1.0, GST_FORMAT_TIME, time,
+ gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_TIME, time,
GST_CLOCK_TIME_NONE, 0);
gst_pad_push_event (ivorbisfile->srcpad, event);
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 8d0d5c3e..1350e9c6 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -643,7 +643,7 @@ gst_qtdemux_loop_header (GstPad * pad)
stream->samples[stream->sample_index].duration;
}
if (qtdemux->need_discont) {
- GstEvent *event = gst_event_new_newsegment (FALSE, 1.0,
+ GstEvent *event = gst_event_new_new_segment (FALSE, 1.0,
GST_FORMAT_TIME, GST_BUFFER_TIMESTAMP (buf),
GST_CLOCK_TIME_NONE, 0);
gint n;
diff --git a/gst/speed/gstspeed.c b/gst/speed/gstspeed.c
index 850ebc81..fb04f35e 100644
--- a/gst/speed/gstspeed.c
+++ b/gst/speed/gstspeed.c
@@ -589,7 +589,7 @@ speed_sink_event (GstPad * pad, GstEvent * event)
GstFormat format, conv_format;
gint64 start_value, stop_value, base;
- gst_event_parse_newsegment (event, &update, &rate, &format, &start_value,
+ gst_event_parse_new_segment (event, &update, &rate, &format, &start_value,
&stop_value, &base);
g_assert (filter->speed > 0);
@@ -631,7 +631,7 @@ speed_sink_event (GstPad * pad, GstEvent * event)
gst_event_unref (event);
event =
- gst_event_new_newsegment (update, rate, format, start_value,
+ gst_event_new_new_segment (update, rate, format, start_value,
stop_value, base);
diff --git a/gst/tta/gstttaparse.c b/gst/tta/gstttaparse.c
index e7d65164..03fa25a2 100644
--- a/gst/tta/gstttaparse.c
+++ b/gst/tta/gstttaparse.c
@@ -209,7 +209,7 @@ gst_tta_parse_src_event (GstPad * pad, GstEvent * event)
gst_pad_push_event (ttaparse->sinkpad, gst_event_new_flush_stop ());
}
- gst_pad_push_event (ttaparse->srcpad, gst_event_new_newsegment (FALSE,
+ gst_pad_push_event (ttaparse->srcpad, gst_event_new_new_segment (FALSE,
1.0, GST_FORMAT_TIME, 0,
ttaparse->num_frames * FRAME_TIME * GST_SECOND, 0));
@@ -382,7 +382,7 @@ gst_tta_parse_parse_header (GstTtaParse * ttaparse)
gst_pad_set_caps (ttaparse->srcpad, caps);
discont =
- gst_event_new_newsegment (FALSE, 1.0, GST_FORMAT_TIME, 0,
+ gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_TIME, 0,
num_frames * FRAME_TIME * GST_SECOND, 0);
gst_pad_push_event (ttaparse->srcpad, discont);