gst/rawparse/gstrawparse.c: Always seek on frame boundaries, will produce nothing useful otherwise.

Original commit message from CVS:
* gst/rawparse/gstrawparse.c: (gst_raw_parse_src_event):
Always seek on frame boundaries, will produce nothing useful
otherwise.
This commit is contained in:
Sebastian Dröge 2007-12-23 10:34:39 +00:00
parent 96690aa992
commit 086c50363a
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2007-12-23 Sebastian Dröge <slomo@circular-chaos.org>
* gst/rawparse/gstrawparse.c: (gst_raw_parse_src_event):
Always seek on frame boundaries, will produce nothing useful
otherwise.
2007-12-23 Sebastian Dröge <slomo@circular-chaos.org>
* configure.ac:

View file

@ -440,6 +440,11 @@ gst_raw_parse_src_event (GstPad * pad, GstEvent * event)
gst_raw_parse_convert (rp, format, stop, GST_FORMAT_BYTES, &stop);
if (ret) {
/* Seek on a frame boundary */
start -= start % rp->framesize;
if (stop != -1)
stop += rp->framesize - stop % rp->framesize;
event =
gst_event_new_seek (rate, GST_FORMAT_BYTES, flags, start_type,
start, stop_type, stop);