summaryrefslogtreecommitdiff
path: root/ext/schroedinger
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-03-21 21:39:18 +0100
committerBenjamin Otte <otte@redhat.com>2010-03-21 21:39:18 +0100
commitf96e4f15817974e8d3675bfe3980cdf02815bd74 (patch)
tree8eb2ba9bc6058e9a8d5ad2a46e6bd5034e3f3813 /ext/schroedinger
parent46f4c7a6c127dbd20fd9f88a10518e084501cd36 (diff)
downloadgstreamer-plugins-bad-f96e4f15817974e8d3675bfe3980cdf02815bd74.tar.gz
Add -Wmissing-declarations -Wmissing-prototypes to configure flags
And fix all warnings
Diffstat (limited to 'ext/schroedinger')
-rw-r--r--ext/schroedinger/gstschrodec.c2
-rw-r--r--ext/schroedinger/gstschroenc.c2
-rw-r--r--ext/schroedinger/gstschroparse.c3
-rw-r--r--ext/schroedinger/gstschroutils.c2
4 files changed, 9 insertions, 0 deletions
diff --git a/ext/schroedinger/gstschrodec.c b/ext/schroedinger/gstschrodec.c
index 6d6faa56d..29ca5d7a5 100644
--- a/ext/schroedinger/gstschrodec.c
+++ b/ext/schroedinger/gstschrodec.c
@@ -63,6 +63,8 @@ struct _GstSchroDecClass
GstBaseVideoDecoder base_video_decoder_class;
};
+GType gst_schro_dec_get_type (void);
+
/* GstSchroDec signals and args */
enum
diff --git a/ext/schroedinger/gstschroenc.c b/ext/schroedinger/gstschroenc.c
index 6cc1a0d92..c87375bcb 100644
--- a/ext/schroedinger/gstschroenc.c
+++ b/ext/schroedinger/gstschroenc.c
@@ -83,6 +83,8 @@ struct _GstSchroEncClass
GstBaseVideoEncoderClass parent_class;
};
+GType gst_schro_enc_get_type (void);
+
enum
diff --git a/ext/schroedinger/gstschroparse.c b/ext/schroedinger/gstschroparse.c
index adff59cc0..717bb0dc0 100644
--- a/ext/schroedinger/gstschroparse.c
+++ b/ext/schroedinger/gstschroparse.c
@@ -86,6 +86,9 @@ struct _GstSchroParseClass
GstBaseVideoParseClass base_video_parse_class;
};
+GType gst_schro_parse_get_type (void);
+
+
/* GstSchroParse signals and args */
enum
{
diff --git a/ext/schroedinger/gstschroutils.c b/ext/schroedinger/gstschroutils.c
index 9f6a57933..bb1f1bcd6 100644
--- a/ext/schroedinger/gstschroutils.c
+++ b/ext/schroedinger/gstschroutils.c
@@ -21,6 +21,8 @@
#include "config.h"
#endif
+#include "gstschroutils.h"
+
//#define SCHRO_ENABLE_UNSTABLE_API
#include <gst/gst.h>