diff options
author | Benjamin Otte <otte@redhat.com> | 2010-03-21 21:39:18 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-03-21 21:39:18 +0100 |
commit | f96e4f15817974e8d3675bfe3980cdf02815bd74 (patch) | |
tree | 8eb2ba9bc6058e9a8d5ad2a46e6bd5034e3f3813 /gst/legacyresample | |
parent | 46f4c7a6c127dbd20fd9f88a10518e084501cd36 (diff) | |
download | gstreamer-plugins-bad-f96e4f15817974e8d3675bfe3980cdf02815bd74.tar.gz |
Add -Wmissing-declarations -Wmissing-prototypes to configure flags
And fix all warnings
Diffstat (limited to 'gst/legacyresample')
-rw-r--r-- | gst/legacyresample/resample.c | 3 | ||||
-rw-r--r-- | gst/legacyresample/resample.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gst/legacyresample/resample.c b/gst/legacyresample/resample.c index c464adf81..f8f229fd5 100644 --- a/gst/legacyresample/resample.c +++ b/gst/legacyresample/resample.c @@ -33,9 +33,6 @@ #include "buffer.h" #include "debug.h" -void resample_scale_ref (ResampleState * r); -void resample_scale_functable (ResampleState * r); - GST_DEBUG_CATEGORY (libaudioresample_debug); void diff --git a/gst/legacyresample/resample.h b/gst/legacyresample/resample.h index 84bf8f09a..ba14983b6 100644 --- a/gst/legacyresample/resample.h +++ b/gst/legacyresample/resample.h @@ -124,5 +124,8 @@ void resample_set_format (ResampleState *r, ResampleFormat format); void resample_set_method (ResampleState *r, int method); int resample_format_size (ResampleFormat format); +void resample_scale_ref (ResampleState * r); +void resample_scale_functable (ResampleState * r); + #endif /* __RESAMPLE_H__ */ |