From 3b846d7c7dc8d9f0732251e5ed3ed754d6d033e7 Mon Sep 17 00:00:00 2001 From: Mark Nauwelaerts Date: Thu, 1 Mar 2012 11:36:34 +0100 Subject: [PATCH] audioparsers: disable non-ported wavpackparse --- gst/audioparsers/Makefile.am | 2 +- gst/audioparsers/plugin.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gst/audioparsers/Makefile.am b/gst/audioparsers/Makefile.am index 4d4d53ed21..5ad9c72f3b 100644 --- a/gst/audioparsers/Makefile.am +++ b/gst/audioparsers/Makefile.am @@ -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) diff --git a/gst/audioparsers/plugin.c b/gst/audioparsers/plugin.c index 16f98ff6c7..d18ad01ed0 100644 --- a/gst/audioparsers/plugin.c +++ b/gst/audioparsers/plugin.c @@ -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; }