summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeva <deva>2005-05-01 09:56:25 +0000
committerdeva <deva>2005-05-01 09:56:25 +0000
commit5d169f85f64166b68fac4bc6949690d561fcb543 (patch)
tree3e98880592a28fa20c1e0751f736f707578b5923
parent501294dbc06931c71d386f28901cc9e36a98f0c8 (diff)
Added Id and Log tags to all files
-rw-r--r--TODO5
-rw-r--r--src/aboutwindow.cc9
-rw-r--r--src/aboutwindow.h9
-rw-r--r--src/camera.cc9
-rw-r--r--src/camera.h9
-rw-r--r--src/cprquerydialog.cc9
-rw-r--r--src/cprquerydialog.h10
-rw-r--r--src/debug.h10
-rw-r--r--src/decoder.cc9
-rw-r--r--src/decoder.h9
-rw-r--r--src/dv.h10
-rw-r--r--src/dv1394.cc10
-rw-r--r--src/dv1394.h11
-rw-r--r--src/encoder.cc10
-rw-r--r--src/encoder.h9
-rw-r--r--src/error.cc9
-rw-r--r--src/error.h10
-rw-r--r--src/frame.cc10
-rw-r--r--src/frame.h9
-rw-r--r--src/img_encoder.cc12
-rw-r--r--src/img_encoder.h10
-rw-r--r--src/mainwindow.cc9
-rw-r--r--src/mainwindow.h9
-rw-r--r--src/messagebox.cc9
-rw-r--r--src/messagebox.h10
-rw-r--r--src/miav.cc10
-rw-r--r--src/miav.h10
-rw-r--r--src/miav_config.cc11
-rw-r--r--src/miav_config.h10
-rw-r--r--src/mov_encoder.cc12
-rw-r--r--src/mov_encoder.h10
-rw-r--r--src/network.cc10
-rw-r--r--src/network.h10
-rw-r--r--src/package.h10
-rw-r--r--src/player.cc9
-rw-r--r--src/player.h10
-rw-r--r--src/queue.h10
-rw-r--r--src/server.cc11
-rw-r--r--src/server.h10
-rw-r--r--src/server_status.cc7
-rw-r--r--src/server_status.h7
-rw-r--r--src/socket.cc9
-rw-r--r--src/socket.h10
-rw-r--r--src/thread.cc9
-rw-r--r--src/thread.h10
-rw-r--r--src/util.cc9
-rw-r--r--src/util.h10
-rw-r--r--src/videowidget.cc9
-rw-r--r--src/videowidget.h4
49 files changed, 425 insertions, 37 deletions
diff --git a/TODO b/TODO
index 2168712..8b7ce4c 100644
--- a/TODO
+++ b/TODO
@@ -20,6 +20,7 @@ Mainwindow:
[ ] - Show network connection status in statusbar.
[ ] - Show camera connection status in statusbar.
[x] - Save movie messagebox (yes/no/dunno)
+ [ ] - Create snapshot thumbnails from dv stream instead of the widget.
[ ] - Test it.
CPRQueryDialog:
@@ -32,8 +33,8 @@ CPRQueryDialog:
[ ] - Test it.
Encoder:
- [ ] - Send savestate signal.
- [ ] - Make all data sent before deleting network object. (flush)
+ [x] - Send savestate signal.
+ [x] - Make all data sent before deleting network object. (flush)
[x] - Remove ffmpeg code.
[x] - Make use of 2.6 kernel (through raw1394)
diff --git a/src/aboutwindow.cc b/src/aboutwindow.cc
index 6630d4c..690679b 100644
--- a/src/aboutwindow.cc
+++ b/src/aboutwindow.cc
@@ -21,6 +21,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:25 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/aboutwindow.h b/src/aboutwindow.h
index a8437b5..85d7ac2 100644
--- a/src/aboutwindow.h
+++ b/src/aboutwindow.h
@@ -21,6 +21,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:25 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/camera.cc b/src/camera.cc
index 449c653..b7dd8f4 100644
--- a/src/camera.cc
+++ b/src/camera.cc
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.8 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/camera.h b/src/camera.h
index 8760b61..2e0126f 100644
--- a/src/camera.h
+++ b/src/camera.h
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.8 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/cprquerydialog.cc b/src/cprquerydialog.cc
index 8420b4d..23c1723 100644
--- a/src/cprquerydialog.cc
+++ b/src/cprquerydialog.cc
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.8 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/cprquerydialog.h b/src/cprquerydialog.h
index dfba59b..d7dd597 100644
--- a/src/cprquerydialog.h
+++ b/src/cprquerydialog.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.6 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#ifndef __MIAV_CPRQUERYDIALOG_H__
#define __MIAV_CPRQUERYDIALOG_H__
diff --git a/src/debug.h b/src/debug.h
index 34cfeee..c5bb320 100644
--- a/src/debug.h
+++ b/src/debug.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAV_DEBUG_H__
#define __MIAV_DEBUG_H__
diff --git a/src/decoder.cc b/src/decoder.cc
index 35ba5ff..2ab3b6b 100644
--- a/src/decoder.cc
+++ b/src/decoder.cc
@@ -20,6 +20,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.21 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
/*
diff --git a/src/decoder.h b/src/decoder.h
index 267c8aa..a7e2b76 100644
--- a/src/decoder.h
+++ b/src/decoder.h
@@ -19,6 +19,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.8 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/dv.h b/src/dv.h
index 279a278..d6cbdd4 100644
--- a/src/dv.h
+++ b/src/dv.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAV_DV_H__
#define __MIAV_DV_H__
diff --git a/src/dv1394.cc b/src/dv1394.cc
index 004cb3d..7a0a0ed 100644
--- a/src/dv1394.cc
+++ b/src/dv1394.cc
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.6 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "dv1394.h"
diff --git a/src/dv1394.h b/src/dv1394.h
index d05a7aa..ba8900d 100644
--- a/src/dv1394.h
+++ b/src/dv1394.h
@@ -6,7 +6,6 @@
* Copyright 2005 Bent Bisballe
* deva@aasimon.org
****************************************************************************/
-
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -22,7 +21,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAV_DV1394_H__
#define __MIAV_DV1394_H__
diff --git a/src/encoder.cc b/src/encoder.cc
index 8ba681a..9498cb9 100644
--- a/src/encoder.cc
+++ b/src/encoder.cc
@@ -20,7 +20,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.17 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/encoder.h b/src/encoder.h
index d9534b3..32c5799 100644
--- a/src/encoder.h
+++ b/src/encoder.h
@@ -19,6 +19,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.7 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/error.cc b/src/error.cc
index d1d351d..d739a46 100644
--- a/src/error.cc
+++ b/src/error.cc
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.6 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "error.h"
diff --git a/src/error.h b/src/error.h
index 4c88505..06aa4b1 100644
--- a/src/error.h
+++ b/src/error.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.5 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAV_ERROR_H__
#define __MIAV_ERROR_H__
diff --git a/src/frame.cc b/src/frame.cc
index 23d98ce..ee86888 100644
--- a/src/frame.cc
+++ b/src/frame.cc
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.5 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "frame.h"
diff --git a/src/frame.h b/src/frame.h
index 8005520..a10a934 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __FRAME_H__
#define __FRAME_H__
diff --git a/src/img_encoder.cc b/src/img_encoder.cc
index d83a906..9af9db6 100644
--- a/src/img_encoder.cc
+++ b/src/img_encoder.cc
@@ -18,9 +18,17 @@
*
* 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
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.6 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
*/
-
#include "img_encoder.h"
#include <stdio.h>
//#include <setjmp.h>
diff --git a/src/img_encoder.h b/src/img_encoder.h
index 92fe0de..3c000b6 100644
--- a/src/img_encoder.h
+++ b/src/img_encoder.h
@@ -19,7 +19,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.5 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#ifndef __RTVIDEOREC_IMGENCODER_H
#define __RTVIDEOREC_IMGENCODER_H
diff --git a/src/mainwindow.cc b/src/mainwindow.cc
index d68820b..0346ed3 100644
--- a/src/mainwindow.cc
+++ b/src/mainwindow.cc
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.16 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 3b8f73c..997b9dc 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.8 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/messagebox.cc b/src/messagebox.cc
index 1975eac..11126db 100644
--- a/src/messagebox.cc
+++ b/src/messagebox.cc
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.7 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
#include "messagebox.h"
diff --git a/src/messagebox.h b/src/messagebox.h
index 72b703f..7f43e72 100644
--- a/src/messagebox.h
+++ b/src/messagebox.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.6 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/miav.cc b/src/miav.cc
index eedeb7e..ef2a369 100644
--- a/src/miav.cc
+++ b/src/miav.cc
@@ -21,7 +21,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.5 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "server.h"
diff --git a/src/miav.h b/src/miav.h
index d6d860e..90b6639 100644
--- a/src/miav.h
+++ b/src/miav.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __LIBMIAV_H__
#define __LIBMIAV_H__
diff --git a/src/miav_config.cc b/src/miav_config.cc
index c0acfb8..9a209ba 100644
--- a/src/miav_config.cc
+++ b/src/miav_config.cc
@@ -6,7 +6,6 @@
* Copyright 2005 Bent Bisballe
* deva@aasimon.org
****************************************************************************/
-
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -22,7 +21,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.7 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "miav_config.h"
diff --git a/src/miav_config.h b/src/miav_config.h
index c621af2..756d0f4 100644
--- a/src/miav_config.h
+++ b/src/miav_config.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.5 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAV_MIAV_CONFIG_H__
#define __MIAV_MIAV_CONFIG_H__
diff --git a/src/mov_encoder.cc b/src/mov_encoder.cc
index 7de264d..a999041 100644
--- a/src/mov_encoder.cc
+++ b/src/mov_encoder.cc
@@ -18,9 +18,17 @@
*
* 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
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.8 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
*/
-
#include "mov_encoder.h"
#include "debug.h"
diff --git a/src/mov_encoder.h b/src/mov_encoder.h
index 45d7676..511c71d 100644
--- a/src/mov_encoder.h
+++ b/src/mov_encoder.h
@@ -19,7 +19,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.4 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#ifndef __RTVIDEOREC_ENCODER_H
#define __RTVIDEOREC_ENCODER_H
diff --git a/src/network.cc b/src/network.cc
index 3c7fd7e..67ad413 100644
--- a/src/network.cc
+++ b/src/network.cc
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "network.h"
diff --git a/src/network.h b/src/network.h
index d1f68c0..8064d5b 100644
--- a/src/network.h
+++ b/src/network.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAVLIB_NETWORK_H__
#define __MIAVLIB_NETWORK_H__
diff --git a/src/package.h b/src/package.h
index 94580ee..d209cb4 100644
--- a/src/package.h
+++ b/src/package.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAVLIB_PACKAGE_H__
#define __MIAVLIB_PACKAGE_H__
diff --git a/src/player.cc b/src/player.cc
index bc17f0a..a14b8d5 100644
--- a/src/player.cc
+++ b/src/player.cc
@@ -20,6 +20,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.22 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/player.h b/src/player.h
index 0f0f7e5..93fb454 100644
--- a/src/player.h
+++ b/src/player.h
@@ -19,7 +19,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.6 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/queue.h b/src/queue.h
index 1437af4..3dc6909 100644
--- a/src/queue.h
+++ b/src/queue.h
@@ -19,7 +19,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.12 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __RTVIDEOREC_QUEUE_H
#define __RTVIDEOREC_QUEUE_H
diff --git a/src/server.cc b/src/server.cc
index d603b41..3b69c64 100644
--- a/src/server.cc
+++ b/src/server.cc
@@ -6,7 +6,6 @@
* Copyright 2004 Bent Bisballe
* deva@aasimon.org
****************************************************************************/
-
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -22,7 +21,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.8 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include "server.h"
#include "miav.h"
diff --git a/src/server.h b/src/server.h
index 0aa9a9a..214d4ce 100644
--- a/src/server.h
+++ b/src/server.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#ifndef __SERVER_H__
#define __SERVER_H__
diff --git a/src/server_status.cc b/src/server_status.cc
index a26ddd6..f3b8e92 100644
--- a/src/server_status.cc
+++ b/src/server_status.cc
@@ -25,7 +25,12 @@
/*
* $Id$
*/
-
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "server_status.h"
diff --git a/src/server_status.h b/src/server_status.h
index cbc2a0d..1d0d2b6 100644
--- a/src/server_status.h
+++ b/src/server_status.h
@@ -25,7 +25,12 @@
/*
* $Id$
*/
-
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAV_SERVER_STATUS_H__
#define __MIAV_SERVER_STATUS_H__
diff --git a/src/socket.cc b/src/socket.cc
index 851a6ea..351743c 100644
--- a/src/socket.cc
+++ b/src/socket.cc
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "socket.h"
diff --git a/src/socket.h b/src/socket.h
index 70dc7fe..c84868f 100644
--- a/src/socket.h
+++ b/src/socket.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __MIAVLIB_SOCKET_H__
#define __MIAVLIB_SOCKET_H__
diff --git a/src/thread.cc b/src/thread.cc
index c6b4d95..ee072ac 100644
--- a/src/thread.cc
+++ b/src/thread.cc
@@ -22,6 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include "thread.h"
diff --git a/src/thread.h b/src/thread.h
index ecf0487..bbd7812 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -22,7 +22,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __THREAD_H__
#define __THREAD_H__
diff --git a/src/util.cc b/src/util.cc
index 5edf990..67b9dd1 100644
--- a/src/util.cc
+++ b/src/util.cc
@@ -17,6 +17,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#include <stdio.h>
diff --git a/src/util.h b/src/util.h
index 7921e41..e603274 100644
--- a/src/util.h
+++ b/src/util.h
@@ -17,7 +17,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifndef __RTVIDEOREC_UTIL_H
#define __RTVIDEOREC_UTIL_H
diff --git a/src/videowidget.cc b/src/videowidget.cc
index 64758bd..7532466 100644
--- a/src/videowidget.cc
+++ b/src/videowidget.cc
@@ -21,6 +21,15 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+/*
+ * $Id$
+ */
+/*
+ * $Log$
+ * Revision 1.2 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
+ */
#include <config.h>
#ifdef USE_GUI
diff --git a/src/videowidget.h b/src/videowidget.h
index ecf15bd..54ca2eb 100644
--- a/src/videowidget.h
+++ b/src/videowidget.h
@@ -26,9 +26,11 @@
*/
/*
* $Log$
+ * Revision 1.3 2005/05/01 09:56:26 deva
+ * Added Id and Log tags to all files
+ *
* Revision 1.2 2005/05/01 09:33:47 deva
* *** empty log message ***
- *
*/
#include <config.h>
#ifdef USE_GUI