diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-07-14 07:50:01 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-07-14 07:50:01 +0000 |
commit | 95fa5e8b95b4f2708bd5053a0873d343d667f6dd (patch) | |
tree | 065ced9e2e8c75a2a0808c6d7d74795c28c5c22e /gst/dvdspu | |
parent | 72dedf790444dbbd093e10066e4a7e699689502c (diff) | |
download | gst-plugins-bad-95fa5e8b95b4f2708bd5053a0873d343d667f6dd.tar.gz gst-plugins-bad-95fa5e8b95b4f2708bd5053a0873d343d667f6dd.tar.bz2 gst-plugins-bad-95fa5e8b95b4f2708bd5053a0873d343d667f6dd.zip |
ext/resindvd/gstmpegdemux.c: Remove whitespace line.
Original commit message from CVS:
* ext/resindvd/gstmpegdemux.c:
Remove whitespace line.
* ext/resindvd/resindvdbin.c:
* ext/resindvd/resindvdbin.h:
Make it so that audio/video pads aren't added to the bin
until after data flow starts.
* ext/resindvd/resin-play:
Move video buffer queue outside resindvdbin
* ext/resindvd/resindvdsrc.c:
Check that the nav_clock_id didn't already get unscheduled.
* gst/dvdspu/gstdvdspu.c:
Remove assert that sometimes triggers erroneously.
Diffstat (limited to 'gst/dvdspu')
-rw-r--r-- | gst/dvdspu/gstdvdspu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/dvdspu/gstdvdspu.c b/gst/dvdspu/gstdvdspu.c index a2273d96..9fc6346a 100644 --- a/gst/dvdspu/gstdvdspu.c +++ b/gst/dvdspu/gstdvdspu.c @@ -1094,7 +1094,7 @@ gst_dvd_spu_advance_spu (GstDVDSpu * dvdspu, GstClockTime new_ts) /* If we get here, we have an SPU buffer, and it's time to process the * next cmd */ - g_assert (state->buf != NULL && state->next_ts <= new_ts); + g_assert (state->buf != NULL); GST_DEBUG_OBJECT (dvdspu, "Executing cmd blk with TS %" GST_TIME_FORMAT " @ offset %u", GST_TIME_ARGS (state->next_ts), state->cur_cmd_blk); |