audioparsers: disable non-ported wavpackparse

This commit is contained in:
Mark Nauwelaerts 2012-03-01 11:36:34 +01:00
parent f189f62b13
commit 3b846d7c7d
2 changed files with 3 additions and 1 deletions

View file

@ -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)

View file

@ -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;
}