audioparsers: disable non-ported wavpackparse
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Thu, 1 Mar 2012 10:36:34 +0000 (11:36 +0100)
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
Thu, 1 Mar 2012 10:36:34 +0000 (11:36 +0100)
gst/audioparsers/Makefile.am
gst/audioparsers/plugin.c

index 4d4d53e..5ad9c72 100644 (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)
index 16f98ff..d18ad01 100644 (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;
 }