diff options
author | Andy Wingo <wingo@pobox.com> | 2005-11-22 11:57:51 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2005-11-22 11:57:51 +0000 |
commit | ee0e50b84d25f2886d41c9629c01edc376237fcd (patch) | |
tree | 6e3ef89bf1865953d42bfa95c6978adbcdc9741d /gst/tta | |
parent | ba572e2d2ced78513a341e0f5edbec9ef71688fc (diff) | |
download | gst-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 'gst/tta')
-rw-r--r-- | gst/tta/gstttaparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |