mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
baseparse: don't use == in debug string
It messes up GST_DEBUG=*:5 make foo/bar.valgrind, because our Makefile looks for '==' as marker of valgrind output.
This commit is contained in:
parent
7043bf9d55
commit
c7f2e85d86
1 changed files with 1 additions and 1 deletions
|
@ -1560,7 +1560,7 @@ gst_base_parse_check_media (GstBaseParse * parse)
|
|||
parse->priv->is_video = FALSE;
|
||||
}
|
||||
|
||||
GST_DEBUG_OBJECT (parse, "media is video == %d", parse->priv->is_video);
|
||||
GST_DEBUG_OBJECT (parse, "media is video: %d", parse->priv->is_video);
|
||||
}
|
||||
|
||||
/* takes ownership of frame */
|
||||
|
|
Loading…
Reference in a new issue