mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
transcoder: Remove un-needed gst_init call
We can safely assume GStreamer is already initialized from here. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1840>
This commit is contained in:
parent
984f0c2d2f
commit
552007f839
2 changed files with 1 additions and 4 deletions
|
@ -84,8 +84,7 @@ excludes = []
|
||||||
foreach f: [
|
foreach f: [
|
||||||
'gst/frei0r/frei0r.h',
|
'gst/frei0r/frei0r.h',
|
||||||
'gst/mxf/mxful.c',
|
'gst/mxf/mxful.c',
|
||||||
'gst-libs/gst/mpegts/gstmpegts-private.h',
|
'gst-libs/gst/*/*-private.h',
|
||||||
'gst-libs/gst/player/*-private.h',
|
|
||||||
'gst-libs/gst/codecparsers/nalutils.h',
|
'gst-libs/gst/codecparsers/nalutils.h',
|
||||||
'ext/closedcaption/bcd.h',
|
'ext/closedcaption/bcd.h',
|
||||||
'ext/closedcaption/bit_slicer.[ch]',
|
'ext/closedcaption/bit_slicer.[ch]',
|
||||||
|
|
|
@ -813,8 +813,6 @@ gst_transcoder_main (gpointer data)
|
||||||
static gpointer
|
static gpointer
|
||||||
gst_transcoder_init_once (G_GNUC_UNUSED gpointer user_data)
|
gst_transcoder_init_once (G_GNUC_UNUSED gpointer user_data)
|
||||||
{
|
{
|
||||||
gst_init (NULL, NULL);
|
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_INIT (gst_transcoder_debug, "gst-transcoder", 0,
|
GST_DEBUG_CATEGORY_INIT (gst_transcoder_debug, "gst-transcoder", 0,
|
||||||
"GstTranscoder");
|
"GstTranscoder");
|
||||||
gst_transcoder_error_quark ();
|
gst_transcoder_error_quark ();
|
||||||
|
|
Loading…
Reference in a new issue