From bdeae7cfcd0591e3d76aa3ad5aae3f820b3c3f9d Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 22 Nov 2005 11:53:34 +0000 Subject: ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event) (gst_dvdemux_demux_frame) ext/flac/gstflacdec.c (gst_flacdec_writ... Original commit message from CVS: 2005-11-22 Andy Wingo * ext/dv/gstdvdemux.c (gst_dvdemux_handle_sink_event) (gst_dvdemux_demux_frame) * ext/flac/gstflacdec.c (gst_flacdec_write) * ext/flac/gstflacenc.c (gst_flacenc_seek_callback) (gst_flacenc_sink_event) * ext/gconf/gstgconfaudiosink.c (gst_gconf_audio_sink_init) * ext/gconf/gstgconfvideosink.c (gst_gconf_video_sink_init) * ext/libpng/gstpngdec.c (gst_pngdec_caps_create_and_set) * ext/speex/gstspeexdec.c (speex_dec_event, speex_dec_chain) * gst/auparse/gstauparse.c (gst_auparse_chain) * gst/autodetect/gstautoaudiosink.c (gst_auto_audio_sink_init) * gst/autodetect/gstautovideosink.c (gst_auto_video_sink_init) * gst/avi/gstavidemux.c (gst_avi_demux_stream_header) (gst_avi_demux_handle_seek) * gst/goom/gstgoom.c (gst_goom_event) * gst/matroska/ebml-write.c (gst_ebml_write_seek) * gst/matroska/matroska-demux.c (gst_matroska_demux_handle_seek_event) (gst_matroska_demux_loop_stream_parse_id) * gst/wavenc/gstwavenc.c (gst_wavenc_stop_file) * gst/wavparse/gstwavparse.c (gst_wavparse_handle_seek) (gst_wavparse_stream_headers): Run update-funcnames. --- ext/dv/gstdvdemux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/dv') diff --git a/ext/dv/gstdvdemux.c b/ext/dv/gstdvdemux.c index 3786f522..882b270f 100644 --- a/ext/dv/gstdvdemux.c +++ b/ext/dv/gstdvdemux.c @@ -607,7 +607,7 @@ gst_dvdemux_handle_sink_event (GstPad * pad, GstEvent * event) GstFormat format; /* parse byte start and stop positions */ - gst_event_parse_newsegment (event, NULL, NULL, &format, + gst_event_parse_new_segment (event, NULL, NULL, &format, &dvdemux->start_byte, &dvdemux->stop_byte, NULL); /* and queue a DISCONT before sending the next set of buffers */ @@ -885,7 +885,7 @@ gst_dvdemux_demux_frame (GstDVDemux * dvdemux, const guint8 * data) } } - event = gst_event_new_newsegment (FALSE, 1.0, GST_FORMAT_TIME, + event = gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_TIME, dvdemux->start_timestamp, dvdemux->stop_timestamp, dvdemux->start_timestamp); gst_dvdemux_send_event (dvdemux, event); -- cgit