mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 11:15:31 +00:00
audioparsers: disable non-ported wavpackparse
This commit is contained in:
parent
f189f62b13
commit
3b846d7c7d
2 changed files with 3 additions and 1 deletions
|
@ -3,7 +3,7 @@ plugin_LTLIBRARIES = libgstaudioparsers.la
|
|||
libgstaudioparsers_la_SOURCES = \
|
||||
gstaacparse.c gstamrparse.c gstac3parse.c \
|
||||
gstdcaparse.c gstflacparse.c gstmpegaudioparse.c \
|
||||
gstwavpackparse.c plugin.c
|
||||
plugin.c
|
||||
|
||||
libgstaudioparsers_la_CFLAGS = \
|
||||
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
|
|
|
@ -46,8 +46,10 @@ plugin_init (GstPlugin * plugin)
|
|||
GST_RANK_PRIMARY + 1, GST_TYPE_FLAC_PARSE);
|
||||
ret &= gst_element_register (plugin, "mpegaudioparse",
|
||||
GST_RANK_PRIMARY + 2, GST_TYPE_MPEG_AUDIO_PARSE);
|
||||
#if 0
|
||||
ret &= gst_element_register (plugin, "wavpackparse2",
|
||||
GST_RANK_SECONDARY, GST_TYPE_WAVPACK_PARSE);
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue