diff options
Diffstat (limited to 'gst/audioresample')
-rw-r--r-- | gst/audioresample/Makefile.am | 9 | ||||
-rw-r--r-- | gst/audioresample/debug.c | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/gst/audioresample/Makefile.am b/gst/audioresample/Makefile.am index 36fd56c5..14b8d002 100644 --- a/gst/audioresample/Makefile.am +++ b/gst/audioresample/Makefile.am @@ -1,21 +1,22 @@ - plugin_LTLIBRARIES = libgstaudioresample.la resample_SOURCES = \ functable.c \ - functable.h \ resample.c \ resample_functable.c \ resample_ref.c \ resample_chunk.c \ resample.h \ debug.c \ + buffer.c + +noinst_HEADERS = + gstaudioresample.h \ + functable.h \ debug.h \ - buffer.c \ buffer.h libgstaudioresample_la_SOURCES = gstaudioresample.c $(resample_SOURCES) libgstaudioresample_la_CFLAGS = $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(LIBOIL_CFLAGS) libgstaudioresample_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBOIL_LIBS) libgstaudioresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) - diff --git a/gst/audioresample/debug.c b/gst/audioresample/debug.c index 27877277..11fb8842 100644 --- a/gst/audioresample/debug.c +++ b/gst/audioresample/debug.c @@ -16,7 +16,7 @@ static const char *resample_debug_level_names[] = { "LOG" }; -static int resample_debug_level = RESAMPLE_LEVEL_ERROR; +static int resample_debug_level = RESAMPLE_LEVEL_LOG; void resample_debug_log (int level, const char *file, const char *function, |