mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
vorbis: fix debug category init
During the element splitting process, the debug category initialization has been dropped accidently. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/1074>
This commit is contained in:
parent
f25ceab46f
commit
00a71112c0
1 changed files with 10 additions and 0 deletions
|
@ -38,6 +38,16 @@ vorbis_element_init (GstPlugin * plugin)
|
|||
|
||||
if (g_once_init_enter (&res)) {
|
||||
gst_tag_register_musicbrainz_tags ();
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (vorbisenc_debug, "vorbisenc", 0,
|
||||
"vorbis encoding element");
|
||||
GST_DEBUG_CATEGORY_INIT (vorbisdec_debug, "vorbisdec", 0,
|
||||
"vorbis decoding element");
|
||||
GST_DEBUG_CATEGORY_INIT (vorbisparse_debug, "vorbisparse", 0,
|
||||
"vorbis parsing element");
|
||||
GST_DEBUG_CATEGORY_INIT (vorbistag_debug, "vorbistag", 0,
|
||||
"vorbis tagging element");
|
||||
|
||||
g_once_init_leave (&res, TRUE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue