mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
Fix error in my previous commit - NULL was accidentily removed, leading to a segfault in gst-register
Original commit message from CVS: Fix error in my previous commit - NULL was accidentily removed, leading to a segfault in gst-register
This commit is contained in:
parent
c453aa275f
commit
aca4c1865c
1 changed files with 2 additions and 1 deletions
|
@ -64,7 +64,8 @@ mp3_sink_factory (void)
|
||||||
"mp3parse_sink",
|
"mp3parse_sink",
|
||||||
"audio/mpeg",
|
"audio/mpeg",
|
||||||
"mpegversion", GST_PROPS_INT (1)
|
"mpegversion", GST_PROPS_INT (1)
|
||||||
)
|
),
|
||||||
|
NULL
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue