diff options
Diffstat (limited to 'TOOLS/realcodecs')
-rw-r--r-- | TOOLS/realcodecs/14_4.c | 32 | ||||
-rw-r--r-- | TOOLS/realcodecs/28_8.c | 32 | ||||
-rw-r--r-- | TOOLS/realcodecs/cook.c | 32 | ||||
-rw-r--r-- | TOOLS/realcodecs/drv2.c | 32 | ||||
-rw-r--r-- | TOOLS/realcodecs/drv3.c | 32 | ||||
-rw-r--r-- | TOOLS/realcodecs/drv4.c | 32 | ||||
-rw-r--r-- | TOOLS/realcodecs/ra.c | 32 | ||||
-rw-r--r-- | TOOLS/realcodecs/rv30.c | 32 | ||||
-rw-r--r-- | TOOLS/realcodecs/sipr.c | 32 |
9 files changed, 207 insertions, 81 deletions
diff --git a/TOOLS/realcodecs/14_4.c b/TOOLS/realcodecs/14_4.c index 942a40d3f8..6def97af46 100644 --- a/TOOLS/realcodecs/14_4.c +++ b/TOOLS/realcodecs/14_4.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual 14_4.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual real14_4.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -30,7 +44,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -86,7 +100,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -101,11 +115,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; diff --git a/TOOLS/realcodecs/28_8.c b/TOOLS/realcodecs/28_8.c index 9a0ddf56d0..6634c4afde 100644 --- a/TOOLS/realcodecs/28_8.c +++ b/TOOLS/realcodecs/28_8.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual 14_4.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual real28_8.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -30,7 +44,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -86,7 +100,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -101,11 +115,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; diff --git a/TOOLS/realcodecs/cook.c b/TOOLS/realcodecs/cook.c index 2ca335357b..8a8310d72e 100644 --- a/TOOLS/realcodecs/cook.c +++ b/TOOLS/realcodecs/cook.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual cook.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual realcook.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -42,7 +56,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -133,7 +147,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -148,11 +162,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; diff --git a/TOOLS/realcodecs/drv2.c b/TOOLS/realcodecs/drv2.c index f829a4f2f4..c4de76f1f2 100644 --- a/TOOLS/realcodecs/drv2.c +++ b/TOOLS/realcodecs/drv2.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual cook.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual realdrv2.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -34,7 +48,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -110,7 +124,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -125,11 +139,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; diff --git a/TOOLS/realcodecs/drv3.c b/TOOLS/realcodecs/drv3.c index cdb1bfd574..5d03a023d5 100644 --- a/TOOLS/realcodecs/drv3.c +++ b/TOOLS/realcodecs/drv3.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual cook.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual realdrv3.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -34,7 +48,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -110,7 +124,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -125,11 +139,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; diff --git a/TOOLS/realcodecs/drv4.c b/TOOLS/realcodecs/drv4.c index 11cb3fac32..63eab69a21 100644 --- a/TOOLS/realcodecs/drv4.c +++ b/TOOLS/realcodecs/drv4.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual cook.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual realdrv4.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -36,7 +50,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -82,7 +96,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -97,11 +111,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; diff --git a/TOOLS/realcodecs/ra.c b/TOOLS/realcodecs/ra.c index cef14e035b..816a6c1802 100644 --- a/TOOLS/realcodecs/ra.c +++ b/TOOLS/realcodecs/ra.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual cook.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual realcook.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -41,7 +55,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -132,7 +146,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -147,11 +161,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; diff --git a/TOOLS/realcodecs/rv30.c b/TOOLS/realcodecs/rv30.c index bb6c75fcae..a74f2e22ab 100644 --- a/TOOLS/realcodecs/rv30.c +++ b/TOOLS/realcodecs/rv30.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual cook.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual realrv30.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -44,7 +58,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -161,7 +175,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -176,11 +190,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; diff --git a/TOOLS/realcodecs/sipr.c b/TOOLS/realcodecs/sipr.c index 386fdfb23b..d14996aa2e 100644 --- a/TOOLS/realcodecs/sipr.c +++ b/TOOLS/realcodecs/sipr.c @@ -1,9 +1,23 @@ /* - GPL v2 blah blah - - This is a small dll that works as a wrapper for the actual cook.so.6.0 - dll from real player 8.0. -*/ + * This is a small DLL that works as a wrapper for the actual realsipr.so.6.0 + * DLL from RealPlayer 8.0. + * + * This file is part of MPlayer. + * + * MPlayer is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * MPlayer is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with MPlayer; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ /* Assuming that RACloseCodec is the last call. @@ -59,7 +73,7 @@ int b_dlOpened=0; void *handle=NULL; /* exits program when failure */ -void loadSyms() { +void loadSyms(void) { fputs("loadSyms()\n", stderr); if (!b_dlOpened) { char *error; @@ -155,7 +169,7 @@ void loadSyms() { } } -void closeDll() { +void closeDll(void) { if (handle) { b_dlOpened=0; dlclose(handle); @@ -170,11 +184,11 @@ void _init(void) { struct timezone tz; struct timeval tv1, tv2; -void tic() { +void tic(void) { gettimeofday(&tv1, &tz); } -void toc() { +void toc(void) { long secs, usecs; gettimeofday(&tv2, &tz); secs=tv2.tv_sec-tv1.tv_sec; |