mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
ext/jpeg/gstjpegenc.c: fix DURATION on outgoing buffers
Original commit message from CVS: * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type), (gst_jpegenc_chain): fix DURATION on outgoing buffers * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event): debug using time formats * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support), (gst_xvimagesink_sink_link): windows with width/height 0 generate X errors, so don't allow them
This commit is contained in:
parent
1fa45fe714
commit
abb132a010
2 changed files with 18 additions and 4 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2004-05-05 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
|
||||
(gst_jpegenc_chain):
|
||||
fix DURATION on outgoing buffers
|
||||
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
|
||||
debug using time formats
|
||||
* sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
|
||||
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
|
||||
(gst_xvimagesink_sink_link):
|
||||
windows with width/height 0 generate X errors, so don't allow them
|
||||
|
||||
2004-05-05 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
|
||||
|
|
|
@ -1230,9 +1230,11 @@ gst_asf_demux_handle_sink_event (GstASFDemux * asf_demux,
|
|||
asf_stream_context *stream = &asf_demux->stream[i];
|
||||
|
||||
if (GST_PAD_IS_USABLE (stream->pad)) {
|
||||
GST_DEBUG ("sending discont on %d %" G_GINT64_FORMAT " + %"
|
||||
G_GINT64_FORMAT " = %" G_GINT64_FORMAT, i, asf_demux->last_seek,
|
||||
stream->delay, asf_demux->last_seek + stream->delay);
|
||||
GST_DEBUG ("sending discont on stream %d with %" GST_TIME_FORMAT
|
||||
" + %" GST_TIME_FORMAT " = %" GST_TIME_FORMAT,
|
||||
i, GST_TIME_ARGS (asf_demux->last_seek),
|
||||
GST_TIME_ARGS (stream->delay),
|
||||
GST_TIME_ARGS (asf_demux->last_seek + stream->delay));
|
||||
discont =
|
||||
gst_event_new_discontinuous (FALSE, GST_FORMAT_TIME,
|
||||
asf_demux->last_seek + stream->delay, NULL);
|
||||
|
|
Loading…
Reference in a new issue