diff options
author | Olivier Crete <olivier.crete@collabora.co.uk> | 2008-04-03 17:09:56 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-02-17 19:29:03 +0100 |
commit | 696a8dc1881651d60e6dd040cd072c9dff025bfa (patch) | |
tree | 3ed5aedd7a3eb3cd8b32c9f63047c220b17fc783 /gst | |
parent | 29991c984a95f08c4ae18a7735cd8dcae726c5a5 (diff) | |
download | gst-plugins-bad-696a8dc1881651d60e6dd040cd072c9dff025bfa.tar.gz gst-plugins-bad-696a8dc1881651d60e6dd040cd072c9dff025bfa.tar.bz2 gst-plugins-bad-696a8dc1881651d60e6dd040cd072c9dff025bfa.zip |
[MOVED FROM GST-P-FARSIGHT] non-perfect stream isnt an error, lets just log it
20080403170956-3e2dc-663f6af8ce067f44ca251a89aebf262d4b8a2869.gz
Diffstat (limited to 'gst')
-rw-r--r-- | gst/liveadder/liveadder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/liveadder/liveadder.c b/gst/liveadder/liveadder.c index 72d1a38b..84191e57 100644 --- a/gst/liveadder/liveadder.c +++ b/gst/liveadder/liveadder.c @@ -819,7 +819,7 @@ gst_live_live_adder_chain (GstPad *pad, GstBuffer *buffer) if (GST_CLOCK_TIME_IS_VALID (padprivate->expected_timestamp) && !GST_BUFFER_FLAG_IS_SET(buffer, GST_BUFFER_FLAG_DISCONT) && GST_BUFFER_TIMESTAMP(buffer) != padprivate->expected_timestamp) - GST_ERROR_OBJECT (adder, + GST_LOG_OBJECT (adder, "Timestamp discontinuity without the DISCONT flag set" " (expected %" GST_TIME_FORMAT ", got %" GST_TIME_FORMAT")", GST_TIME_ARGS (padprivate->expected_timestamp), |