diff options
author | Jan Alexander Steffens (heftig) <jsteffens@make.tv> | 2015-01-20 10:18:56 +0100 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2015-03-16 12:01:43 +0000 |
commit | be8e3196a3e236c4f668d761138e3119dc68f0ce (patch) | |
tree | e06152293c518acd69830c14f321a7df8dc4a1ed /gst/flv/gstflvdemux.h | |
parent | ac8a27238145f64eabf89f6ab94b0a65fdc56e18 (diff) |
flvdemux: Don't repeatedly warn after no_more_pads (v2)
This can get rather spammy for such a high log level.
Only warn once per stream.
https://bugzilla.gnome.org/show_bug.cgi?id=746274
Diffstat (limited to 'gst/flv/gstflvdemux.h')
-rw-r--r-- | gst/flv/gstflvdemux.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/flv/gstflvdemux.h b/gst/flv/gstflvdemux.h index 5fb6c1110..aa8d6ac9f 100644 --- a/gst/flv/gstflvdemux.h +++ b/gst/flv/gstflvdemux.h @@ -132,6 +132,11 @@ struct _GstFlvDemux gboolean no_more_pads; +#ifndef GST_DISABLE_DEBUG + gboolean no_audio_warned; + gboolean no_video_warned; +#endif + gboolean seeking; gboolean building_index; gboolean indexed; /* TRUE if index is completely built */ |