diff options
author | Andy Wingo <wingo@pobox.com> | 2005-11-22 11:53:34 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2005-11-22 11:53:34 +0000 |
commit | bdeae7cfcd0591e3d76aa3ad5aae3f820b3c3f9d (patch) | |
tree | 945a5aabc7e4acc32c508adffac808fd30be6a2b /gst/wavparse | |
parent | f8456ac0f3cd61497b70f7eb61f9e38d58693e91 (diff) |
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 <wingo@pobox.com>
* 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.
Diffstat (limited to 'gst/wavparse')
-rw-r--r-- | gst/wavparse/gstwavparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c index 8978e1de..12005db5 100644 --- a/gst/wavparse/gstwavparse.c +++ b/gst/wavparse/gstwavparse.c @@ -734,7 +734,7 @@ gst_wavparse_handle_seek (GstWavParse * wav, gboolean update) wav->offset, wav->dataleft, GST_TIME_ARGS (start_time), GST_TIME_ARGS (stop_time)); - wav->seek_event = gst_event_new_newsegment (!update, wav->segment_rate, + wav->seek_event = gst_event_new_new_segment (!update, wav->segment_rate, GST_FORMAT_TIME, start_time, stop_time, start_time); if (flush) @@ -858,7 +858,7 @@ gst_wavparse_stream_headers (GstWavParse * wav) wav->segment_stop = (gint64) GST_SECOND *wav->datasize / wav->bps; /* Initial discont */ - wav->seek_event = gst_event_new_newsegment (FALSE, 1.0, + wav->seek_event = gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_TIME, wav->segment_start, wav->segment_stop, wav->segment_start); |