summaryrefslogtreecommitdiffstats
path: root/ext/faad/gstfaad.c
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 /ext/faad/gstfaad.c
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.
Diffstat (limited to 'ext/faad/gstfaad.c')
-rw-r--r--ext/faad/gstfaad.c4
1 files changed, 2 insertions, 2 deletions
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;