diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 20:44:38 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-05 20:44:38 +0000 |
commit | ea37f5776a90a7f8153757052a89d589185f5d23 (patch) | |
tree | de101bed2e068b81d2abc03866112342e5858ebe /src/libxinevdec | |
parent | c35a3e9d5068667992c1b104195de59721e23786 (diff) | |
download | xine-lib-ea37f5776a90a7f8153757052a89d589185f5d23.tar.gz xine-lib-ea37f5776a90a7f8153757052a89d589185f5d23.tar.bz2 |
make all the plugin init functions static
(geez this was a job)
CVS patchset: 2616
CVS date: 2002/09/05 20:44:38
Diffstat (limited to 'src/libxinevdec')
-rw-r--r-- | src/libxinevdec/cinepak.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/cyuv.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/fli.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/foovideo.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/idcinvideo.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/msrle.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/msvc.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/qtrpza.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/qtsmc.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/rgb.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/roqvideo.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/svq1.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/wc3video.c | 4 | ||||
-rw-r--r-- | src/libxinevdec/yuv.c | 4 |
14 files changed, 28 insertions, 28 deletions
diff --git a/src/libxinevdec/cinepak.c b/src/libxinevdec/cinepak.c index 58b006659..441b464c0 100644 --- a/src/libxinevdec/cinepak.c +++ b/src/libxinevdec/cinepak.c @@ -22,7 +22,7 @@ * based on overview of Cinepak algorithm and example decoder * by Tim Ferguson: http://www.csse.monash.edu.au/~timf/ * - * $Id: cinepak.c,v 1.12 2002/09/04 23:31:11 guenter Exp $ + * $Id: cinepak.c,v 1.13 2002/09/05 20:44:41 mroi Exp $ */ #include <stdlib.h> @@ -440,7 +440,7 @@ static void cvid_dispose (video_decoder_t *this_gen) { free (this_gen); } -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { cvid_decoder_t *this ; diff --git a/src/libxinevdec/cyuv.c b/src/libxinevdec/cyuv.c index 79dbdf27f..16aef6bc9 100644 --- a/src/libxinevdec/cyuv.c +++ b/src/libxinevdec/cyuv.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: cyuv.c,v 1.6 2002/09/04 23:31:11 guenter Exp $ + * $Id: cyuv.c,v 1.7 2002/09/05 20:44:41 mroi Exp $ */ /* And this is the header that came with the CYUV decoder: */ @@ -232,7 +232,7 @@ static void cyuv_dispose (video_decoder_t *this_gen) { free (this_gen); } -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { cyuv_decoder_t *this ; diff --git a/src/libxinevdec/fli.c b/src/libxinevdec/fli.c index cb3f597ab..662aa4b35 100644 --- a/src/libxinevdec/fli.c +++ b/src/libxinevdec/fli.c @@ -23,7 +23,7 @@ * avoid when implementing a FLI decoder, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: fli.c,v 1.4 2002/09/04 23:31:11 guenter Exp $ + * $Id: fli.c,v 1.5 2002/09/05 20:44:41 mroi Exp $ */ #include <stdio.h> @@ -564,7 +564,7 @@ static void fli_dispose (video_decoder_t *this_gen) { * plugins for the same buffer types to coexist peacefully. The higher the * priority number, the more precedence a decoder has. E.g., 9 beats 1. */ -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { fli_decoder_t *this ; diff --git a/src/libxinevdec/foovideo.c b/src/libxinevdec/foovideo.c index dd02e6b7d..e2cb23c52 100644 --- a/src/libxinevdec/foovideo.c +++ b/src/libxinevdec/foovideo.c @@ -20,7 +20,7 @@ * General description and author credits go here... * * Leave the following line intact for when the decoder is committed to CVS: - * $Id: foovideo.c,v 1.4 2002/09/01 20:45:50 tmmm Exp $ + * $Id: foovideo.c,v 1.5 2002/09/05 20:44:41 mroi Exp $ */ #include <stdio.h> @@ -256,7 +256,7 @@ static void foovideo_dispose (video_decoder_t *this_gen) { * plugins for the same buffer types to coexist peacefully. The higher the * priority number, the more precedence a decoder has. E.g., 9 beats 1. */ -video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { +static void *init_video_decoder_plugin (int iface_version, xine_t *xine) { foovideo_decoder_t *this ; diff --git a/src/libxinevdec/idcinvideo.c b/src/libxinevdec/idcinvideo.c index 0147589d1..5273a1160 100644 --- a/src/libxinevdec/idcinvideo.c +++ b/src/libxinevdec/idcinvideo.c @@ -21,7 +21,7 @@ * the Id CIN format, visit: * http://www.csse.monash.edu.au/~timf/ * - * $Id: idcinvideo.c,v 1.3 2002/09/04 23:31:11 guenter Exp $ + * $Id: idcinvideo.c,v 1.4 2002/09/05 20:44:41 mroi Exp $ */ #include <stdio.h> @@ -387,7 +387,7 @@ static void idcinvideo_dispose (video_decoder_t *this_gen) { * plugins for the same buffer types to coexist peacefully. The higher the * priority number, the more precedence a decoder has. E.g., 9 beats 1. */ -video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { +static void *init_video_decoder_plugin (int iface_version, xine_t *xine) { idcinvideo_decoder_t *this ; diff --git a/src/libxinevdec/msrle.c b/src/libxinevdec/msrle.c index 006c1d57f..531cf0f1f 100644 --- a/src/libxinevdec/msrle.c +++ b/src/libxinevdec/msrle.c @@ -21,7 +21,7 @@ * For more information on the MS RLE format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: msrle.c,v 1.5 2002/09/04 23:31:11 guenter Exp $ + * $Id: msrle.c,v 1.6 2002/09/05 20:44:41 mroi Exp $ */ #include <stdio.h> @@ -340,7 +340,7 @@ static void msrle_dispose (video_decoder_t *this_gen) { * plugins for the same buffer types to coexist peacefully. The higher the * priority number, the more precedence a decoder has. E.g., 9 beats 1. */ -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { msrle_decoder_t *this ; diff --git a/src/libxinevdec/msvc.c b/src/libxinevdec/msvc.c index fe95de7c5..5ba1d142b 100644 --- a/src/libxinevdec/msvc.c +++ b/src/libxinevdec/msvc.c @@ -22,7 +22,7 @@ * based on overview of Microsoft Video-1 algorithm * by Mike Melanson: http://www.pcisys.net/~melanson/codecs/video1.txt * - * $Id: msvc.c,v 1.9 2002/09/04 23:31:11 guenter Exp $ + * $Id: msvc.c,v 1.10 2002/09/05 20:44:41 mroi Exp $ */ #include <stdlib.h> @@ -345,7 +345,7 @@ static void msvc_dispose (video_decoder_t *this_gen) { free (this_gen); } -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { msvc_decoder_t *this ; diff --git a/src/libxinevdec/qtrpza.c b/src/libxinevdec/qtrpza.c index 6b6f2dfa1..05a0f04ee 100644 --- a/src/libxinevdec/qtrpza.c +++ b/src/libxinevdec/qtrpza.c @@ -21,7 +21,7 @@ * For more information about the RPZA format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: qtrpza.c,v 1.2 2002/09/04 23:31:11 guenter Exp $ + * $Id: qtrpza.c,v 1.3 2002/09/05 20:44:42 mroi Exp $ */ #include <stdio.h> @@ -445,7 +445,7 @@ static void qtrpza_dispose (video_decoder_t *this_gen) { free (this_gen); } -video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { +static void *init_video_decoder_plugin (int iface_version, xine_t *xine) { qtrpza_decoder_t *this ; diff --git a/src/libxinevdec/qtsmc.c b/src/libxinevdec/qtsmc.c index 75c110fe4..3dff56ee1 100644 --- a/src/libxinevdec/qtsmc.c +++ b/src/libxinevdec/qtsmc.c @@ -23,7 +23,7 @@ * For more information on the SMC format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: qtsmc.c,v 1.2 2002/09/04 23:31:11 guenter Exp $ + * $Id: qtsmc.c,v 1.3 2002/09/05 20:44:42 mroi Exp $ */ #include <stdio.h> @@ -677,7 +677,7 @@ static void qtsmc_dispose (video_decoder_t *this_gen) { free (this_gen); } -video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { +static void *init_video_decoder_plugin (int iface_version, xine_t *xine) { qtsmc_decoder_t *this ; diff --git a/src/libxinevdec/rgb.c b/src/libxinevdec/rgb.c index 812afdaa3..29b7d120a 100644 --- a/src/libxinevdec/rgb.c +++ b/src/libxinevdec/rgb.c @@ -21,7 +21,7 @@ * Actually, this decoder just converts a raw RGB image to a YUY2 map * suitable for display under xine. * - * $Id: rgb.c,v 1.5 2002/09/04 23:31:11 guenter Exp $ + * $Id: rgb.c,v 1.6 2002/09/05 20:44:42 mroi Exp $ */ #include <stdio.h> @@ -275,7 +275,7 @@ static void rgb_dispose (video_decoder_t *this_gen) { free (this_gen); } -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { rgb_decoder_t *this ; diff --git a/src/libxinevdec/roqvideo.c b/src/libxinevdec/roqvideo.c index 95c4d3809..ad0d21096 100644 --- a/src/libxinevdec/roqvideo.c +++ b/src/libxinevdec/roqvideo.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: roqvideo.c,v 1.7 2002/09/04 23:31:11 guenter Exp $ + * $Id: roqvideo.c,v 1.8 2002/09/05 20:44:42 mroi Exp $ */ /* And this is the header that came with the RoQ video decoder: */ @@ -489,7 +489,7 @@ static void roq_dispose (video_decoder_t *this_gen) { free (this_gen); } -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { roq_decoder_t *this ; diff --git a/src/libxinevdec/svq1.c b/src/libxinevdec/svq1.c index 8e44612ba..6f1d130e0 100644 --- a/src/libxinevdec/svq1.c +++ b/src/libxinevdec/svq1.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: svq1.c,v 1.7 2002/09/04 23:31:11 guenter Exp $ + * $Id: svq1.c,v 1.8 2002/09/05 20:44:42 mroi Exp $ */ #include <stdio.h> @@ -1496,7 +1496,7 @@ static void svq1dec_dispose (video_decoder_t *this_gen) { free (this_gen); } -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { svq1dec_decoder_t *this ; diff --git a/src/libxinevdec/wc3video.c b/src/libxinevdec/wc3video.c index 43ae0a873..a95262da5 100644 --- a/src/libxinevdec/wc3video.c +++ b/src/libxinevdec/wc3video.c @@ -22,7 +22,7 @@ * For more information on the WC3 Movie format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: wc3video.c,v 1.2 2002/09/04 23:31:11 guenter Exp $ + * $Id: wc3video.c,v 1.3 2002/09/05 20:44:42 mroi Exp $ */ #include <stdio.h> @@ -530,7 +530,7 @@ static void wc3video_dispose (video_decoder_t *this_gen) { * plugins for the same buffer types to coexist peacefully. The higher the * priority number, the more precedence a decoder has. E.g., 9 beats 1. */ -video_decoder_t *init_video_decoder_plugin (int iface_version, xine_t *xine) { +static void *init_video_decoder_plugin (int iface_version, xine_t *xine) { wc3video_decoder_t *this ; diff --git a/src/libxinevdec/yuv.c b/src/libxinevdec/yuv.c index 618e4d849..b6976c367 100644 --- a/src/libxinevdec/yuv.c +++ b/src/libxinevdec/yuv.c @@ -21,7 +21,7 @@ * Actually, this decoder just reorganizes chunks of raw YUV data in such * a way that xine can display them. * - * $Id: yuv.c,v 1.4 2002/09/04 23:31:11 guenter Exp $ + * $Id: yuv.c,v 1.5 2002/09/05 20:44:42 mroi Exp $ */ #include <stdio.h> @@ -283,7 +283,7 @@ static void yuv_dispose (video_decoder_t *this_gen) { * plugins for the same buffer types to coexist peacefully. The higher the * priority number, the more precedence a decoder has. E.g., 9 beats 1. */ -void *init_video_decoder_plugin (xine_t *xine, void *data) { +static void *init_video_decoder_plugin (xine_t *xine, void *data) { yuv_decoder_t *this ; |