mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
tests: fix leak in baseparse test
Or rather make it not show up any more by moving it from 'definitely lost' into 'possibly lost'.
This commit is contained in:
parent
7644c8a3c5
commit
a6656b04de
1 changed files with 2 additions and 2 deletions
|
@ -121,12 +121,12 @@ gst_parser_tester_init (GstParserTester * tester)
|
||||||
static void
|
static void
|
||||||
setup_parsertester (void)
|
setup_parsertester (void)
|
||||||
{
|
{
|
||||||
GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
GST_PAD_SINK,
|
GST_PAD_SINK,
|
||||||
GST_PAD_ALWAYS,
|
GST_PAD_ALWAYS,
|
||||||
GST_STATIC_CAPS ("video/x-test-custom")
|
GST_STATIC_CAPS ("video/x-test-custom")
|
||||||
);
|
);
|
||||||
GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_PAD_SRC,
|
GST_PAD_SRC,
|
||||||
GST_PAD_ALWAYS,
|
GST_PAD_ALWAYS,
|
||||||
GST_STATIC_CAPS ("video/x-test-custom")
|
GST_STATIC_CAPS ("video/x-test-custom")
|
||||||
|
|
Loading…
Reference in a new issue