Skip to content

Commit b7bb507

Browse files
author
Stefan Hofmann
committed
Removed RCS identifier tags
1 parent 2675f01 commit b7bb507

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+39
-52
lines changed

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#
22
# Makefile for a Video Disk Recorder plugin
33
#
4-
# $Id: $
54

65
# The official name of this plugin.
76
# This name will be used in the '-P...' option of VDR to load the plugin.

client/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#
22
# Makefile for a Video Disk Recorder plugin
33
#
4-
# $Id: $
54

65
# The official name of this plugin.
76
# This name will be used in the '-P...' option of VDR to load the plugin.

client/device.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: device.c,v 1.27 2010/08/18 10:26:55 schmirl Exp $
2+
* device.c
33
*/
44

55
#include "client/device.h"

client/device.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: device.h,v 1.10 2010/08/18 10:26:55 schmirl Exp $
2+
* device.h
33
*/
44

55
#ifndef VDR_STREAMDEV_DEVICE_H

client/filter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: filter.c,v 1.14 2009/02/13 13:02:39 schmirl Exp $
2+
* filter.c
33
*/
44

55
#include "client/filter.h"

client/filter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: filter.h,v 1.5 2008/04/07 14:27:28 schmirl Exp $
2+
* filter.h
33
*/
44

55
#ifndef VDR_STREAMDEV_FILTER_H

client/setup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: setup.c,v 1.10 2010/06/08 05:55:17 schmirl Exp $
2+
* setup.c
33
*/
44

55
#include <vdr/menuitems.h>

client/setup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: setup.h,v 1.7 2010/06/08 05:55:17 schmirl Exp $
2+
* setup.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SETUPCLIENT_H

client/socket.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: socket.c,v 1.15 2010/08/18 10:26:55 schmirl Exp $
2+
* socket.c
33
*/
44

55
#include <tools/select.h>

client/socket.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: socket.h,v 1.8 2010/08/18 10:26:55 schmirl Exp $
2+
* socket.h
33
*/
44

55
#ifndef VDR_STREAMDEV_CLIENT_CONNECTION_H

client/streamdev-client.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
* streamdev.c: A plugin for the Video Disk Recorder
33
*
44
* See the README file for copyright information and how to reach the author.
5-
*
6-
* $Id: streamdev-client.c,v 1.3 2010/08/18 10:26:56 schmirl Exp $
75
*/
86

97
#include "streamdev-client.h"

client/streamdev-client.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: streamdev-client.h,v 1.3 2010/08/18 10:26:56 schmirl Exp $
2+
* streamdev-client.h
33
*/
44

55
#ifndef VDR_STREAMDEVCLIENT_H

common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: common.c,v 1.12 2010/07/19 13:49:24 schmirl Exp $
2+
* common.c
33
*/
44

55
#include <vdr/channels.h>

common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: common.h,v 1.16 2010/07/19 13:49:24 schmirl Exp $
2+
* common.h
33
*/
44

55
#ifndef VDR_STREAMDEV_COMMON_H

remux/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#
22
# Makefile for a Video Disk Recorder plugin
33
#
4-
# $Id: Makefile,v 1.2 2010/07/19 13:49:28 schmirl Exp $
54

65
### The object files (add further files here):
76

remux/ts2pes.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
*
1010
* The cRepacker family's code was originally written by Reinhard Nissl <[email protected]>,
1111
* and adapted to the VDR coding style by [email protected].
12-
*
13-
* $Id: ts2pes.c,v 1.2 2009/06/30 06:04:33 schmirl Exp $
1412
*/
1513

1614
#include "remux/ts2pes.h"

remux/ts2pes.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
*
44
* This file is based on a copy of remux.h from Klaus Schmidinger's
55
* VDR, version 1.6.0.
6-
*
7-
* $Id: ts2pes.h,v 1.4 2009/07/06 06:11:11 schmirl Exp $
86
*/
97

108
#ifndef VDR_STREAMDEV_TS2PES_H

server/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#
22
# Makefile for a Video Disk Recorder plugin
33
#
4-
# $Id: $
54

65
# The official name of this plugin.
76
# This name will be used in the '-P...' option of VDR to load the plugin.

server/component.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: component.c,v 1.4 2009/02/13 10:39:22 schmirl Exp $
2+
* component.c
33
*/
44

55
#include "server/component.h"

server/component.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: component.h,v 1.3 2009/02/13 10:39:22 schmirl Exp $
2+
* component.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SERVERS_COMPONENT_H

server/componentHTTP.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: componentHTTP.c,v 1.2 2005/05/09 20:22:29 lordjaxom Exp $
2+
* componentHTTP.c
33
*/
44

55
#include "server/componentHTTP.h"

server/componentHTTP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: componentHTTP.h,v 1.2 2005/05/09 20:22:29 lordjaxom Exp $
2+
* componentHTTP.h
33
*/
44

55
#ifndef VDR_STREAMDEV_HTTPSERVER_H

server/componentIGMP.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: componentIGMP.c,v 1.2 2009/07/03 21:44:19 schmirl Exp $
2+
* componentIGMP.c
33
*/
44
#include <netinet/ip.h>
55
#include <netinet/igmp.h>

server/componentIGMP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: componentIGMP.h,v 1.1 2009/02/13 10:39:22 schmirl Exp $
2+
* componentIGMP.h
33
*/
44

55
#ifndef VDR_STREAMDEV_IGMPSERVER_H

server/componentVTP.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: componentVTP.c,v 1.2 2005/05/09 20:22:29 lordjaxom Exp $
2+
* componentVTP.c
33
*/
44

55
#include "server/componentVTP.h"

server/componentVTP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: componentVTP.h,v 1.2 2005/05/09 20:22:29 lordjaxom Exp $
2+
* componentVTP.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SERVERS_SERVERVTP_H

server/connection.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: connection.c,v 1.16 2010/08/03 10:51:53 schmirl Exp $
2+
* connection.c
33
*/
44

55
#include "server/connection.h"

server/connection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: connection.h,v 1.10 2010/08/03 10:46:41 schmirl Exp $
2+
* connection.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SERVER_CONNECTION_H

server/connectionHTTP.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: connectionHTTP.c,v 1.21 2010/08/03 10:46:41 schmirl Exp $
2+
* connectionHTTP.c
33
*/
44

55
#include <ctype.h>

server/connectionHTTP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: connectionHTTP.h,v 1.7 2010/07/19 13:49:31 schmirl Exp $
2+
* connectionHTTP.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SERVERS_CONNECTIONHTTP_H

server/connectionIGMP.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: connectionIGMP.c,v 1.3 2010/08/03 10:46:41 schmirl Exp $
2+
* connectionIGMP.c
33
*/
44

55
#include <ctype.h>

server/connectionIGMP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: connectionIGMP.h,v 1.1 2009/02/13 10:39:22 schmirl Exp $
2+
* connectionIGMP.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SERVERS_CONNECTIONIGMP_H

server/connectionVTP.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: connectionVTP.c,v 1.31 2010/08/18 10:26:54 schmirl Exp $
2+
* connectionVTP.c
33
*/
44

55
#include "server/connectionVTP.h"

server/livefilter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: livefilter.c,v 1.7 2009/02/13 13:02:40 schmirl Exp $
2+
* livefilter.c
33
*/
44

55
#include <vdr/filter.h>

server/livefilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: livefilter.h,v 1.5 2008/04/07 14:27:31 schmirl Exp $
2+
* livefilter.h
33
*/
44

55
#ifndef VDR_STREAMEV_LIVEFILTER_H

server/menu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: menu.c,v 1.10 2010/07/19 13:49:31 schmirl Exp $
2+
* menu.c
33
*/
44

55
#include <vdr/menuitems.h>

server/menu.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: menu.h,v 1.4 2010/07/19 13:49:31 schmirl Exp $
2+
* menu.h
33
*/
44

55
#ifndef VDR_STREAMDEV_MENU_H

server/server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: server.c,v 1.10 2009/02/13 10:39:22 schmirl Exp $
2+
* server.c
33
*/
44

55
#include "server/server.h"

server/server.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: server.h,v 1.6 2008/10/22 11:59:32 schmirl Exp $
2+
* server.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SERVER_H

server/setup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: setup.c,v 1.10 2010/07/19 13:49:31 schmirl Exp $
2+
* setup.c
33
*/
44

55
#include <vdr/menuitems.h>

server/setup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: setup.h,v 1.4 2010/07/19 13:49:31 schmirl Exp $
2+
* setup.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SETUPSERVER_H

server/streamdev-server.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
* streamdev.c: A plugin for the Video Disk Recorder
33
*
44
* See the README file for copyright information and how to reach the author.
5-
*
6-
* $Id: streamdev-server.c,v 1.2 2010/07/19 13:49:32 schmirl Exp $
75
*/
86

97
#include <getopt.h>

server/streamdev-server.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: streamdev-server.h,v 1.2 2010/07/19 13:49:32 schmirl Exp $
2+
* streamdev-server.h
33
*/
44

55
#ifndef VDR_STREAMDEVSERVER_H

server/streamer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: streamer.c,v 1.21 2010/07/30 10:01:11 schmirl Exp $
2+
* streamer.c
33
*/
44

55
#include <vdr/ringbuffer.h>

server/streamer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: streamer.h,v 1.12 2010/07/19 13:49:32 schmirl Exp $
2+
* streamer.h
33
*/
44

55
#ifndef VDR_STREAMDEV_STREAMER_H

server/suspend.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: suspend.c,v 1.3 2008/10/22 11:59:32 schmirl Exp $
2+
* suspend.c
33
*/
44

55
#include "server/suspend.h"

server/suspend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* $Id: suspend.h,v 1.2 2008/10/22 11:59:32 schmirl Exp $
2+
* suspend.h
33
*/
44

55
#ifndef VDR_STREAMDEV_SUSPEND_H

tools/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#
22
# Makefile for a Video Disk Recorder plugin
33
#
4-
# $Id: Makefile,v 1.2 2010/07/19 13:49:44 schmirl Exp $
54

65
### The object files (add further files here):
76

0 commit comments

Comments
 (0)