mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
matroskaparse: warn if accumulating headers after they were pushed
https://bugzilla.gnome.org/show_bug.cgi?id=665412
This commit is contained in:
parent
94b8f0b74e
commit
3e2b23280e
1 changed files with 5 additions and 0 deletions
|
@ -2500,6 +2500,11 @@ static void
|
|||
gst_matroska_parse_accumulate_streamheader (GstMatroskaParse * parse,
|
||||
GstBuffer * buffer)
|
||||
{
|
||||
if (parse->pushed_headers) {
|
||||
GST_WARNING_OBJECT (parse,
|
||||
"Accumulating headers, but headers are already pushed");
|
||||
}
|
||||
|
||||
if (parse->streamheader) {
|
||||
GstBuffer *buf;
|
||||
|
||||
|
|
Loading…
Reference in a new issue