diff options
author | Edward Hervey <bilboed@bilboed.com> | 2007-07-30 12:41:58 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2007-07-30 12:41:58 +0000 |
commit | a086ad230eb86fc0edcaa10b73f7ddc964013c34 (patch) | |
tree | 992c2f1ead5f50c116010ab9b4b9e03792935822 /gst/qtdemux | |
parent | 9ace67724c2826e4412a9f10e2fd2a14584010cd (diff) |
gst/qtdemux/qtdemux.c: If the buffer was entirely clipped ... don't try sending it :)
Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_state_movie):
If the buffer was entirely clipped ... don't try sending it :)
Diffstat (limited to 'gst/qtdemux')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 2d22b606..c2129d99 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -1470,6 +1470,9 @@ gst_qtdemux_loop_state_movie (GstQTDemux * qtdemux) if (stream->need_clip) buf = gst_qtdemux_clip_buffer (qtdemux, stream, buf); + if (buf == NULL) + goto next; + if (stream->discont) { GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_DISCONT); stream->discont = FALSE; |