mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
ext/a52dec/gsta52dec.*: Do something useful with timestamps. Make chain-based (since there's really no reason to be l...
Original commit message from CVS: * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo), (gst_a52dec_handle_frame), (gst_a52dec_chain), (gst_a52dec_change_state), (plugin_init): * ext/a52dec/gsta52dec.h: Do something useful with timestamps. Make chain-based (since there's really no reason to be loopbased). * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry): Update current_byte/frame correctly.
This commit is contained in:
parent
d5e45b823d
commit
fd2b4713a6
2 changed files with 14 additions and 2 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2004-12-06 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/a52dec/gsta52dec.c: (gst_a52dec_init),
|
||||
(gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
|
||||
(gst_a52dec_handle_frame), (gst_a52dec_chain),
|
||||
(gst_a52dec_change_state), (plugin_init):
|
||||
* ext/a52dec/gsta52dec.h:
|
||||
Do something useful with timestamps. Make chain-based (since
|
||||
there's really no reason to be loopbased).
|
||||
* gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
|
||||
Update current_byte/frame correctly.
|
||||
|
||||
2004-12-04 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
|
||||
|
|
|
@ -2012,8 +2012,8 @@ gst_avi_demux_process_next_entry (GstAviDemux * avi)
|
|||
gst_pad_push (stream->pad, GST_DATA (buf));
|
||||
processed = TRUE;
|
||||
}
|
||||
stream->current_frame++;
|
||||
stream->current_byte += entry->size;
|
||||
stream->current_frame = entry->frames_before + 1;
|
||||
stream->current_byte = entry->bytes_before + entry->size;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue