diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2003-12-21 22:43:09 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2003-12-21 22:43:09 +0000 |
commit | 26da56b423a834192f5edf413c3cb1be257f845a (patch) | |
tree | 4182e5351f49767eaf5447091a8050d27bd69474 /ext/gsm | |
parent | 0d9a29465920184a2f1ae1d21be9d8598dd33b93 (diff) | |
download | gst-plugins-bad-26da56b423a834192f5edf413c3cb1be257f845a.tar.gz gst-plugins-bad-26da56b423a834192f5edf413c3cb1be257f845a.tar.bz2 gst-plugins-bad-26da56b423a834192f5edf413c3cb1be257f845a.zip |
Port lame, libfame and xvid to new CAPS
Original commit message from CVS:
Port lame, libfame and xvid to new CAPS
Fix varargs in jpegdec and pngenc
Make GstStaticPadTemplates static in gsmdec
Add integer versions of the RGB masks in video.h
Fix inverted logic in gstvideotestsrc
Diffstat (limited to 'ext/gsm')
-rw-r--r-- | ext/gsm/gstgsmdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/gsm/gstgsmdec.c b/ext/gsm/gstgsmdec.c index 2a218c83..7a35b155 100644 --- a/ext/gsm/gstgsmdec.c +++ b/ext/gsm/gstgsmdec.c @@ -75,7 +75,7 @@ gst_gsmdec_get_type(void) { return gsmdec_type; } -GstStaticPadTemplate gsmdec_sink_template = +static GstStaticPadTemplate gsmdec_sink_template = GST_STATIC_PAD_TEMPLATE ( "sink", GST_PAD_SINK, @@ -87,7 +87,7 @@ GST_STATIC_PAD_TEMPLATE ( ) ); -GstStaticPadTemplate gsmdec_src_template = +static GstStaticPadTemplate gsmdec_src_template = GST_STATIC_PAD_TEMPLATE ( "src", GST_PAD_SRC, |