summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
Diffstat (limited to 'src/input')
-rw-r--r--src/input/base64.c4
-rw-r--r--src/input/base64.h4
-rw-r--r--src/input/http_helper.c2
-rw-r--r--src/input/http_helper.h2
-rw-r--r--src/input/input_cdda.c2
-rw-r--r--src/input/input_dvb.c62
-rw-r--r--src/input/input_dvd.c3
-rw-r--r--src/input/input_file.c2
-rw-r--r--src/input/input_gnome_vfs.c2
-rw-r--r--src/input/input_http.c2
-rw-r--r--src/input/input_mms.c2
-rw-r--r--src/input/input_net.c2
-rw-r--r--src/input/input_plugin.h2
-rw-r--r--src/input/input_pvr.c2
-rw-r--r--src/input/input_smb.c2
-rw-r--r--src/input/input_stdin_fifo.c2
-rw-r--r--src/input/input_vcd.c3
-rw-r--r--src/input/libdvdnav/decoder.c3
-rw-r--r--src/input/libdvdnav/decoder.h3
-rw-r--r--src/input/libdvdnav/dvd_types.h3
-rw-r--r--src/input/libdvdnav/dvdnav.c3
-rw-r--r--src/input/libdvdnav/dvdnav.h3
-rw-r--r--src/input/libdvdnav/dvdnav_events.h3
-rw-r--r--src/input/libdvdnav/dvdnav_internal.h3
-rw-r--r--src/input/libdvdnav/highlight.c3
-rw-r--r--src/input/libdvdnav/navigation.c3
-rw-r--r--src/input/libdvdnav/read_cache.c3
-rw-r--r--src/input/libdvdnav/read_cache.h3
-rw-r--r--src/input/libdvdnav/remap.c2
-rw-r--r--src/input/libdvdnav/remap.h2
-rw-r--r--src/input/libdvdnav/searching.c3
-rw-r--r--src/input/libdvdnav/settings.c3
-rw-r--r--src/input/libdvdnav/vm.c3
-rw-r--r--src/input/libdvdnav/vm.h3
-rw-r--r--src/input/libdvdnav/vmcmd.c3
-rw-r--r--src/input/libdvdnav/vmcmd.h3
-rw-r--r--src/input/libreal/asmrp.c2
-rw-r--r--src/input/libreal/asmrp.h2
-rw-r--r--src/input/libreal/real.c3
-rw-r--r--src/input/libreal/real.h3
-rw-r--r--src/input/libreal/rmff.c2
-rw-r--r--src/input/libreal/rmff.h2
-rw-r--r--src/input/libreal/sdpplin.c3
-rw-r--r--src/input/libreal/sdpplin.h3
-rw-r--r--src/input/librtsp/rtsp.c2
-rw-r--r--src/input/librtsp/rtsp.h2
-rw-r--r--src/input/librtsp/rtsp_session.c2
-rw-r--r--src/input/librtsp/rtsp_session.h2
-rw-r--r--src/input/mms.c2
-rw-r--r--src/input/mms.h2
-rw-r--r--src/input/mmsh.c2
-rw-r--r--src/input/mmsh.h2
-rw-r--r--src/input/pnm.c2
-rw-r--r--src/input/pnm.h2
-rw-r--r--src/input/sha1.c2
-rw-r--r--src/input/sha1.h1
-rw-r--r--src/input/vcd/xine-extra.c1
-rw-r--r--src/input/vcd/xine-extra.h1
-rw-r--r--src/input/vcd/xineplug_inp_vcd.c1
59 files changed, 24 insertions, 177 deletions
diff --git a/src/input/base64.c b/src/input/base64.c
index 2d553d498..ffb039802 100644
--- a/src/input/base64.c
+++ b/src/input/base64.c
@@ -19,7 +19,6 @@
*
* Base64 encoding modified for Musicbrainz
* relicensed under the GNU General Public License for use in xine-lib
- *
*/
/* --------------------------------------------------------------------------
@@ -41,8 +40,6 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- $Id: base64.c,v 1.2 2004/05/05 18:44:19 mroi Exp $
-
----------------------------------------------------------------------------*/
/*
* Program: RFC-822 routines (originally from SMTP)
@@ -84,7 +81,6 @@
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
* CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- *
*/
#include <ctype.h>
diff --git a/src/input/base64.h b/src/input/base64.h
index 9c6ba63b6..5cc94d7f0 100644
--- a/src/input/base64.h
+++ b/src/input/base64.h
@@ -19,7 +19,6 @@
*
* Base64 encoding modified for Musicbrainz
* relicensed under the GNU General Public License for use in xine-lib
- *
*/
/* --------------------------------------------------------------------------
@@ -41,8 +40,6 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- $Id: base64.h,v 1.1 2004/05/05 09:11:39 hadess Exp $
-
----------------------------------------------------------------------------*/
/*
* Program: RFC-822 routines (originally from SMTP)
@@ -84,7 +81,6 @@
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
* CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- *
*/
#ifndef BASE64_H
diff --git a/src/input/http_helper.c b/src/input/http_helper.c
index dcd57ebee..4883763b0 100644
--- a/src/input/http_helper.c
+++ b/src/input/http_helper.c
@@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
* URL helper functions
- *
- * $Id: http_helper.c,v 1.9 2006/11/19 15:38:47 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/http_helper.h b/src/input/http_helper.h
index d3ac0ea95..3ce3f2b7c 100644
--- a/src/input/http_helper.h
+++ b/src/input/http_helper.h
@@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
* URL helper functions
- *
- * $Id: http_helper.h,v 1.3 2004/12/24 01:59:12 dsalt Exp $
*/
#ifndef HTTP_HELPER_H
diff --git a/src/input/input_cdda.c b/src/input/input_cdda.c
index 8a5a099d0..43baa3c4a 100644
--- a/src/input/input_cdda.c
+++ b/src/input/input_cdda.c
@@ -19,8 +19,6 @@
*
* Compact Disc Digital Audio (CDDA) Input Plugin
* by Mike Melanson (melanson@pcisys.net)
- *
- * $Id: input_cdda.c,v 1.94 2007/03/10 00:48:59 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c
index 1715c5a2f..fbfc62921 100644
--- a/src/input/input_dvb.c
+++ b/src/input/input_dvb.c
@@ -330,8 +330,6 @@ typedef struct {
osd_object_t *background;
xine_event_queue_t *event_queue;
- /* CRC table for PAT rebuilding */
- unsigned long crc32_table[256];
/* scratch buffer for forward seeking */
char seek_buf[BUFSIZE];
@@ -450,28 +448,6 @@ static void print_info(const char* estring) {
}
#endif
-static void ts_build_crc32_table(dvb_input_plugin_t *this) {
- uint32_t i, j, k;
-
- for( i = 0 ; i < 256 ; i++ ) {
- k = 0;
- for (j = (i << 24) | 0x800000 ; j != 0x80000000 ; j <<= 1) {
- k = (k << 1) ^ (((k ^ j) & 0x80000000) ? 0x04c11db7 : 0);
- }
- this->crc32_table[i] = k;
- }
-}
-
-static uint32_t ts_compute_crc32(dvb_input_plugin_t *this, uint8_t *data,
- uint32_t length, uint32_t crc32) {
- uint32_t i;
-
- for(i = 0; i < length; i++) {
- crc32 = (crc32 << 8) ^ this->crc32_table[(crc32 >> 24) ^ data[i]];
- }
- return crc32;
-}
-
static unsigned int getbits(unsigned char *buffer, unsigned int bitpos, unsigned int bitcount)
{
@@ -2480,7 +2456,7 @@ static void ts_rewrite_packets (dvb_input_plugin_t *this, unsigned char * origin
originalPkt[11]=(this->channels[this->channel].pmtpid >> 8) & 0xff;
originalPkt[12]=this->channels[this->channel].pmtpid & 0xff;
- crc= ts_compute_crc32 (this, originalPkt+1, 12, 0xffffffff);
+ crc= _x_compute_crc32 (originalPkt+1, 12, 0xffffffff);
originalPkt[13]=(crc>>24) & 0xff;
originalPkt[14]=(crc>>16) & 0xff;
@@ -3095,8 +3071,6 @@ static int dvb_plugin_open(input_plugin_t * this_gen)
snprintf(str, 256, "%s", this->channels[this->channel].name);
_x_meta_info_set(this->stream, XINE_META_INFO_TITLE, str);
- /* compute CRC table for rebuilding pat */
- ts_build_crc32_table(this);
/* Clear all pids, the pmt will tell us which to use */
for (x = 0; x < MAX_FILTERS; x++){
@@ -3198,26 +3172,38 @@ static char **dvb_class_get_autoplay_list(input_class_t * this_gen,
dvb_input_class_t *class = (dvb_input_class_t *) this_gen;
channel_t *channels=NULL;
char foobuffer[BUFSIZE];
- int ch, apch, num_channels;
+ int ch, apch, num_channels = 0;
int default_channel = -1;
xine_cfg_entry_t lastchannel_enable = {0};
xine_cfg_entry_t lastchannel;
- num_channels = 0;
+ /* need to probe card here to get fe_type to read in channels.conf */
+ tuner_t *tuner;
+ xine_cfg_entry_t adapter;
+
+ xine_config_lookup_entry(class->xine, "media.dvb.adapter", &adapter);
- if (!(channels = load_channels(class->xine, NULL, &num_channels, 0))) {
- static char *placefile = NULL;
+ if (!(tuner = tuner_init(class->xine,adapter.num_value))) {
+ xprintf(class->xine, XINE_VERBOSITY_LOG, _("input_dvb: cannot open dvb device\n"));
+ class->mrls[0]="Sorry, No DVB input device found.";
+ *num_files=1;
+ return class->mrls;
+ }
+
+ if (!(channels = load_channels(class->xine, NULL, &num_channels, tuner->feinfo.type))) {
/* channels.conf not found in .xine */
- class->mrls[0]="Sorry, no channels.conf found.";
- class->mrls[1]="Please run the scan utility from the DVB";
- class->mrls[2]="drivers apps package and place the file in";
- if (!placefile)
- asprintf (&placefile, "%s/"PACKAGE"/", xdgConfigHome(class->xine->basedir_handle));
- class->mrls[3]=placefile;
- *num_files=4;
+ class->mrls[0]="Sorry, No valid channels.conf found";
+ class->mrls[1]="for the selected DVB device.";
+ class->mrls[2]="Please run the dvbscan utility";
+ class->mrls[3]="from the dvb drivers apps package";
+ class->mrls[4]="and place the file in ~/.xine/";
+ *num_files=5;
+ tuner_dispose(tuner);
return class->mrls;
}
+ tuner_dispose(tuner);
+
if (xine_config_lookup_entry(class->xine, "media.dvb.remember_channel", &lastchannel_enable)
&& lastchannel_enable.num_value
&& xine_config_lookup_entry(class->xine, "media.dvb.last_channel", &lastchannel))
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index 37c07c218..55e975eab 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -17,9 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- *
- * $Id: input_dvd.c,v 1.216 2007/02/20 01:04:07 dgp85 Exp $
- *
*/
/* This file was origninally part of the xine-dvdnav project
diff --git a/src/input/input_file.c b/src/input/input_file.c
index 6e443063c..0ed4ab682 100644
--- a/src/input/input_file.c
+++ b/src/input/input_file.c
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- *
- * $Id: input_file.c,v 1.122 2007/03/29 19:47:17 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/input_gnome_vfs.c b/src/input/input_gnome_vfs.c
index 866cc128c..3315a52ea 100644
--- a/src/input/input_gnome_vfs.c
+++ b/src/input/input_gnome_vfs.c
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- *
- * $Id: input_gnome_vfs.c,v 1.34 2007/01/19 01:05:25 dgp85 Exp $
*/
diff --git a/src/input/input_http.c b/src/input/input_http.c
index eb9fab144..328ab523e 100644
--- a/src/input/input_http.c
+++ b/src/input/input_http.c
@@ -18,8 +18,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
* input plugin for http network streams
- *
- * $Id: input_http.c,v 1.129 2007/03/17 16:47:16 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/input_mms.c b/src/input/input_mms.c
index 4fabb766e..3e4b7172c 100644
--- a/src/input/input_mms.c
+++ b/src/input/input_mms.c
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: input_mms.c,v 1.70 2007/02/20 00:51:39 dgp85 Exp $
- *
* mms input plugin based on work from major mms
*/
diff --git a/src/input/input_net.c b/src/input/input_net.c
index 2a7b3e267..b3d7a5396 100644
--- a/src/input/input_net.c
+++ b/src/input/input_net.c
@@ -20,8 +20,6 @@
* Read from a tcp network stream over a lan (put a tweaked mp1e encoder the
* other end and you can watch tv anywhere in the house ..)
*
- * $Id: input_net.c,v 1.70 2007/01/19 01:05:25 dgp85 Exp $
- *
* how to set up mp1e for use with this plugin:
*
* use mp1 to capture the live stream, e.g.
diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h
index 55bc14ed4..3f59bab6c 100644
--- a/src/input/input_plugin.h
+++ b/src/input/input_plugin.h
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- *
- * $Id: input_plugin.h,v 1.64 2007/01/19 01:05:25 dgp85 Exp $
*/
#ifndef HAVE_INPUT_PLUGIN_H
diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c
index 74022965f..84b8468db 100644
--- a/src/input/input_pvr.c
+++ b/src/input/input_pvr.c
@@ -37,8 +37,6 @@
*
* usage:
* xine pvr:/<prefix_to_tmp_files>\!<prefix_to_saved_files>\!<max_page_age>
- *
- * $Id: input_pvr.c,v 1.65 2007/01/19 01:05:25 dgp85 Exp $
*/
/**************************************************************************
diff --git a/src/input/input_smb.c b/src/input/input_smb.c
index 0fd2c6f18..9fd4e50c8 100644
--- a/src/input/input_smb.c
+++ b/src/input/input_smb.c
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- *
- * $Id: input_smb.c,v 1.16 2007/01/26 17:06:05 dgp85 Exp $
*/
diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c
index 64672fce3..01fef7431 100644
--- a/src/input/input_stdin_fifo.c
+++ b/src/input/input_stdin_fifo.c
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- *
- * $Id: input_stdin_fifo.c,v 1.70 2007/02/20 00:34:56 dgp85 Exp $
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c
index 7ec4b1ea8..c422b2531 100644
--- a/src/input/input_vcd.c
+++ b/src/input/input_vcd.c
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
- *
- * $Id: input_vcd.c,v 1.89 2007/03/16 16:32:58 dgp85 Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/decoder.c b/src/input/libdvdnav/decoder.c
index 0a2d0c3cb..3dff4a080 100644
--- a/src/input/libdvdnav/decoder.c
+++ b/src/input/libdvdnav/decoder.c
@@ -18,9 +18,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: decoder.c,v 1.14 2004/03/16 11:43:38 mroi Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/decoder.h b/src/input/libdvdnav/decoder.h
index 13768a70e..fa9cef445 100644
--- a/src/input/libdvdnav/decoder.h
+++ b/src/input/libdvdnav/decoder.h
@@ -17,9 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: decoder.h,v 1.9 2004/03/16 11:43:38 mroi Exp $
- *
*/
#ifndef DECODER_H_INCLUDED
diff --git a/src/input/libdvdnav/dvd_types.h b/src/input/libdvdnav/dvd_types.h
index 17c437712..949c67a48 100644
--- a/src/input/libdvdnav/dvd_types.h
+++ b/src/input/libdvdnav/dvd_types.h
@@ -17,9 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: dvd_types.h,v 1.4 2003/04/29 15:58:30 jcdutton Exp $
- *
*/
/*
diff --git a/src/input/libdvdnav/dvdnav.c b/src/input/libdvdnav/dvdnav.c
index 6c1852885..86b6a4fa7 100644
--- a/src/input/libdvdnav/dvdnav.c
+++ b/src/input/libdvdnav/dvdnav.c
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: dvdnav.c,v 1.34 2005/10/15 14:04:05 jcdutton Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/dvdnav.h b/src/input/libdvdnav/dvdnav.h
index 6942078da..fd86da747 100644
--- a/src/input/libdvdnav/dvdnav.h
+++ b/src/input/libdvdnav/dvdnav.h
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: dvdnav.h,v 1.15 2005/10/14 21:02:16 miguelfreitas Exp $
- *
*/
/*
diff --git a/src/input/libdvdnav/dvdnav_events.h b/src/input/libdvdnav/dvdnav_events.h
index 492321533..9191c1ae5 100644
--- a/src/input/libdvdnav/dvdnav_events.h
+++ b/src/input/libdvdnav/dvdnav_events.h
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: dvdnav_events.h,v 1.11 2003/04/07 18:10:48 mroi Exp $
- *
*/
/*
diff --git a/src/input/libdvdnav/dvdnav_internal.h b/src/input/libdvdnav/dvdnav_internal.h
index 1f27c5ebb..32ba3dad4 100644
--- a/src/input/libdvdnav/dvdnav_internal.h
+++ b/src/input/libdvdnav/dvdnav_internal.h
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: dvdnav_internal.h,v 1.18 2006/09/26 20:31:40 dgp85 Exp $
- *
*/
#ifndef DVDNAV_INTERNAL_H_INCLUDED
diff --git a/src/input/libdvdnav/highlight.c b/src/input/libdvdnav/highlight.c
index ac417f155..f0d60f005 100644
--- a/src/input/libdvdnav/highlight.c
+++ b/src/input/libdvdnav/highlight.c
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: highlight.c,v 1.17 2004/03/16 11:43:38 mroi Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/navigation.c b/src/input/libdvdnav/navigation.c
index 1fe90f697..d7e092a41 100644
--- a/src/input/libdvdnav/navigation.c
+++ b/src/input/libdvdnav/navigation.c
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: navigation.c,v 1.11 2004/06/20 16:59:13 mroi Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/read_cache.c b/src/input/libdvdnav/read_cache.c
index 5d0515260..4c237c5d6 100644
--- a/src/input/libdvdnav/read_cache.c
+++ b/src/input/libdvdnav/read_cache.c
@@ -17,9 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: read_cache.c,v 1.12 2004/03/16 11:43:38 mroi Exp $
- *
*/
/*
* There was a multithreaded read ahead cache in here for some time, but
diff --git a/src/input/libdvdnav/read_cache.h b/src/input/libdvdnav/read_cache.h
index 23c58c58e..c860872ea 100644
--- a/src/input/libdvdnav/read_cache.h
+++ b/src/input/libdvdnav/read_cache.h
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: read_cache.h,v 1.1 2002/08/08 17:49:21 richwareham Exp $
- *
*/
#ifndef __DVDNAV_READ_CACHE_H
diff --git a/src/input/libdvdnav/remap.c b/src/input/libdvdnav/remap.c
index f2049ac06..43c81c66f 100644
--- a/src/input/libdvdnav/remap.c
+++ b/src/input/libdvdnav/remap.c
@@ -14,8 +14,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: remap.c,v 1.6 2006/12/08 16:26:10 mshopf Exp $
*/
#include <stdlib.h>
diff --git a/src/input/libdvdnav/remap.h b/src/input/libdvdnav/remap.h
index 5440843c8..c79a0ed43 100644
--- a/src/input/libdvdnav/remap.h
+++ b/src/input/libdvdnav/remap.h
@@ -14,8 +14,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: remap.h,v 1.2 2003/02/20 16:02:00 mroi Exp $
*/
#ifndef __REMAP__H
diff --git a/src/input/libdvdnav/searching.c b/src/input/libdvdnav/searching.c
index 3da9efecf..c9b2244bb 100644
--- a/src/input/libdvdnav/searching.c
+++ b/src/input/libdvdnav/searching.c
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: searching.c,v 1.20 2006/09/17 13:01:08 valtri Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/settings.c b/src/input/libdvdnav/settings.c
index 62fcc7933..e0b283633 100644
--- a/src/input/libdvdnav/settings.c
+++ b/src/input/libdvdnav/settings.c
@@ -16,9 +16,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: settings.c,v 1.7 2004/03/16 11:43:38 mroi Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/vm.c b/src/input/libdvdnav/vm.c
index 6c01d14e8..b20ecf0e2 100644
--- a/src/input/libdvdnav/vm.c
+++ b/src/input/libdvdnav/vm.c
@@ -19,9 +19,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: vm.c,v 1.32 2004/12/20 19:27:20 mroi Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/vm.h b/src/input/libdvdnav/vm.h
index 214570254..a7411b494 100644
--- a/src/input/libdvdnav/vm.h
+++ b/src/input/libdvdnav/vm.h
@@ -18,9 +18,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: vm.h,v 1.11 2004/10/05 19:07:10 hadess Exp $
- *
*/
#ifndef VM_H_INCLUDED
diff --git a/src/input/libdvdnav/vmcmd.c b/src/input/libdvdnav/vmcmd.c
index 3e0a5fb55..24bdfe6e2 100644
--- a/src/input/libdvdnav/vmcmd.c
+++ b/src/input/libdvdnav/vmcmd.c
@@ -18,9 +18,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: vmcmd.c,v 1.6 2004/03/16 11:43:38 mroi Exp $
- *
*/
#ifdef HAVE_CONFIG_H
diff --git a/src/input/libdvdnav/vmcmd.h b/src/input/libdvdnav/vmcmd.h
index d3fd53ec2..12420f2de 100644
--- a/src/input/libdvdnav/vmcmd.h
+++ b/src/input/libdvdnav/vmcmd.h
@@ -17,9 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- *
- * $Id: vmcmd.h,v 1.7 2003/05/11 13:44:05 jcdutton Exp $
- *
*/
#ifndef VMCMD_H_INCLUDED
diff --git a/src/input/libreal/asmrp.c b/src/input/libreal/asmrp.c
index 9bdc2536b..f7206b583 100644
--- a/src/input/libreal/asmrp.c
+++ b/src/input/libreal/asmrp.c
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: asmrp.c,v 1.10 2006/12/25 15:39:31 dgp85 Exp $
- *
* a parser for real's asm rules
*
* grammar for these rules:
diff --git a/src/input/libreal/asmrp.h b/src/input/libreal/asmrp.h
index 18dd0a314..dcc373bd0 100644
--- a/src/input/libreal/asmrp.h
+++ b/src/input/libreal/asmrp.h
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: asmrp.h,v 1.3 2006/11/29 19:43:01 dgp85 Exp $
- *
* a parser for real's asm rules
*
* grammar for these rules:
diff --git a/src/input/libreal/real.c b/src/input/libreal/real.c
index ef2d266e8..9ea65d9df 100644
--- a/src/input/libreal/real.c
+++ b/src/input/libreal/real.c
@@ -17,11 +17,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: real.c,v 1.26 2007/01/19 01:19:06 dgp85 Exp $
- *
* special functions for real streams.
* adopted from joschkas real tools.
- *
*/
#include <stdio.h>
diff --git a/src/input/libreal/real.h b/src/input/libreal/real.h
index bc6078379..edcd170f8 100644
--- a/src/input/libreal/real.h
+++ b/src/input/libreal/real.h
@@ -17,11 +17,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: real.h,v 1.5 2004/04/24 16:55:42 miguelfreitas Exp $
- *
* special functions for real streams.
* adopted from joschkas real tools.
- *
*/
#ifndef HAVE_REAL_H
diff --git a/src/input/libreal/rmff.c b/src/input/libreal/rmff.c
index 6a9854f61..159b81ee6 100644
--- a/src/input/libreal/rmff.c
+++ b/src/input/libreal/rmff.c
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: rmff.c,v 1.8 2006/06/20 01:07:58 dgp85 Exp $
- *
* functions for real media file format
* adopted from joschkas real tools
*/
diff --git a/src/input/libreal/rmff.h b/src/input/libreal/rmff.h
index 29c519a13..d39942088 100644
--- a/src/input/libreal/rmff.h
+++ b/src/input/libreal/rmff.h
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: rmff.h,v 1.5 2004/04/06 19:20:16 valtri Exp $
- *
* some functions for real media file headers
* adopted from joschkas real tools
*/
diff --git a/src/input/libreal/sdpplin.c b/src/input/libreal/sdpplin.c
index 30977223e..c62b6bbc1 100644
--- a/src/input/libreal/sdpplin.c
+++ b/src/input/libreal/sdpplin.c
@@ -17,10 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: sdpplin.c,v 1.8 2006/12/25 16:21:56 dgp85 Exp $
- *
* sdp/sdpplin parser.
- *
*/
#define LOG_MODULE "sdpplin"
diff --git a/src/input/libreal/sdpplin.h b/src/input/libreal/sdpplin.h
index e6994642b..cb3b434d4 100644
--- a/src/input/libreal/sdpplin.h
+++ b/src/input/libreal/sdpplin.h
@@ -17,10 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: sdpplin.h,v 1.2 2003/12/09 00:02:30 f1rmb Exp $
- *
* sdp/sdpplin parser.
- *
*/
#ifndef HAVE_SDPPLIN_H
diff --git a/src/input/librtsp/rtsp.c b/src/input/librtsp/rtsp.c
index 1819dd6e7..530ffc6cf 100644
--- a/src/input/librtsp/rtsp.c
+++ b/src/input/librtsp/rtsp.c
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: rtsp.c,v 1.21 2006/06/20 01:07:58 dgp85 Exp $
- *
* a minimalistic implementation of rtsp protocol,
* *not* RFC 2326 compilant yet.
*/
diff --git a/src/input/librtsp/rtsp.h b/src/input/librtsp/rtsp.h
index e4340ee9a..dc2624459 100644
--- a/src/input/librtsp/rtsp.h
+++ b/src/input/librtsp/rtsp.h
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: rtsp.h,v 1.4 2003/12/09 00:02:31 f1rmb Exp $
- *
* a minimalistic implementation of rtsp protocol,
* *not* RFC 2326 compilant yet.
*/
diff --git a/src/input/librtsp/rtsp_session.c b/src/input/librtsp/rtsp_session.c
index 70ee18a62..f3ddb59bc 100644
--- a/src/input/librtsp/rtsp_session.c
+++ b/src/input/librtsp/rtsp_session.c
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: rtsp_session.c,v 1.19 2006/12/22 18:08:10 klan Exp $
- *
* high level interface to rtsp servers.
*/
diff --git a/src/input/librtsp/rtsp_session.h b/src/input/librtsp/rtsp_session.h
index e00206f3e..b47db0730 100644
--- a/src/input/librtsp/rtsp_session.h
+++ b/src/input/librtsp/rtsp_session.h
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: rtsp_session.h,v 1.7 2006/12/18 21:31:47 klan Exp $
- *
* high level interface to rtsp servers.
*/
diff --git a/src/input/mms.c b/src/input/mms.c
index 89da1d9b5..f11a89cf3 100644
--- a/src/input/mms.c
+++ b/src/input/mms.c
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: mms.c,v 1.65 2007/02/20 00:34:56 dgp85 Exp $
- *
* MMS over TCP protocol
* based on work from major mms
* utility functions to handle communication with an mms server
diff --git a/src/input/mms.h b/src/input/mms.h
index 2df16fcdc..a483fa0c6 100644
--- a/src/input/mms.h
+++ b/src/input/mms.h
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: mms.h,v 1.13 2007/01/03 15:09:42 klan Exp $
- *
* libmms public header
*/
diff --git a/src/input/mmsh.c b/src/input/mmsh.c
index 70db4adee..ae1c62bc1 100644
--- a/src/input/mmsh.c
+++ b/src/input/mmsh.c
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: mmsh.c,v 1.42 2007/01/11 16:20:55 klan Exp $
- *
* MMS over HTTP protocol
* written by Thibaut Mattern
* based on mms.c and specs from avifile
diff --git a/src/input/mmsh.h b/src/input/mmsh.h
index 403115bd1..633d3b5f6 100644
--- a/src/input/mmsh.h
+++ b/src/input/mmsh.h
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: mmsh.h,v 1.6 2007/01/09 20:51:00 klan Exp $
- *
* libmmsh public header
*/
diff --git a/src/input/pnm.c b/src/input/pnm.c
index c97dca75b..38d65b850 100644
--- a/src/input/pnm.c
+++ b/src/input/pnm.c
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: pnm.c,v 1.22 2006/06/20 01:46:41 dgp85 Exp $
- *
* pnm protocol implementation
* based upon code from joschka
*/
diff --git a/src/input/pnm.h b/src/input/pnm.h
index 94574e2fb..838fbadcc 100644
--- a/src/input/pnm.h
+++ b/src/input/pnm.h
@@ -17,8 +17,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
- * $Id: pnm.h,v 1.5 2003/12/09 00:02:30 f1rmb Exp $
- *
* pnm util functions header by joschka
*/
diff --git a/src/input/sha1.c b/src/input/sha1.c
index aa46f0311..b70e50d5f 100644
--- a/src/input/sha1.c
+++ b/src/input/sha1.c
@@ -9,8 +9,6 @@
* Further modifications to include the "UNRAVEL" stuff, below
*
* This code is in the public domain
- *
- * $Id: sha1.c,v 1.1 2004/05/05 09:11:39 hadess Exp $
*/
#include <string.h>
diff --git a/src/input/sha1.h b/src/input/sha1.h
index 6657c92e3..9f2659d60 100644
--- a/src/input/sha1.h
+++ b/src/input/sha1.h
@@ -3,7 +3,6 @@
/* from Peter C. Gutmann's implementation as found in */
/* Applied Cryptography by Bruce Schneier */
/* This code is in the public domain */
-/* $Id: sha1.h,v 1.1 2004/05/05 09:11:39 hadess Exp $ */
#ifndef SHA_H
#define SHA_H
diff --git a/src/input/vcd/xine-extra.c b/src/input/vcd/xine-extra.c
index b0423a913..79c962a79 100644
--- a/src/input/vcd/xine-extra.c
+++ b/src/input/vcd/xine-extra.c
@@ -1,5 +1,4 @@
/*
- $Id: xine-extra.c,v 1.5 2006/09/09 17:41:45 dgp85 Exp $
Copyright (C) 2002 Rocky Bernstein <rocky@panix.com>
diff --git a/src/input/vcd/xine-extra.h b/src/input/vcd/xine-extra.h
index f4051cf52..0650f863d 100644
--- a/src/input/vcd/xine-extra.h
+++ b/src/input/vcd/xine-extra.h
@@ -1,5 +1,4 @@
/*
- $Id: xine-extra.h,v 1.2 2006/04/21 23:15:45 dsalt Exp $
Copyright (C) 2002 Rocky Bernstein <rocky@panix.com>
diff --git a/src/input/vcd/xineplug_inp_vcd.c b/src/input/vcd/xineplug_inp_vcd.c
index ecd0b020a..474cc7339 100644
--- a/src/input/vcd/xineplug_inp_vcd.c
+++ b/src/input/vcd/xineplug_inp_vcd.c
@@ -1,5 +1,4 @@
/*
- $Id: xineplug_inp_vcd.c,v 1.53 2007/02/08 02:40:23 dsalt Exp $
Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>