summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile15
-rw-r--r--README8
-rw-r--r--commands.c17
-rw-r--r--commands.h17
-rw-r--r--control-image.c29
-rw-r--r--control-image.h17
-rw-r--r--data-image.c17
-rw-r--r--data-image.h16
-rw-r--r--data.c17
-rw-r--r--data.h18
-rw-r--r--exif.c17
-rw-r--r--exif.h17
-rw-r--r--image.c17
-rw-r--r--image.h15
-rw-r--r--libimage/Makefile16
-rw-r--r--libimage/pnm.c18
-rw-r--r--libimage/pnm.h18
-rw-r--r--libimage/xpm.c20
-rw-r--r--libimage/xpm.h19
-rw-r--r--liboutput/Makefile18
-rw-r--r--liboutput/encode.c17
-rw-r--r--liboutput/encode.h17
-rw-r--r--liboutput/stillimage-player.c17
-rw-r--r--liboutput/stillimage-player.h17
-rw-r--r--liboutput/stillimage.c15
-rw-r--r--liboutput/stillimage.h15
-rw-r--r--list.c17
-rw-r--r--list.h17
-rw-r--r--menu-commands.c18
-rw-r--r--menu-commands.h17
-rw-r--r--menu-image.c17
-rw-r--r--menu-image.h16
-rw-r--r--menu.c19
-rw-r--r--menu.h16
-rw-r--r--player-image.c15
-rw-r--r--player-image.h15
-rw-r--r--setup-image.c16
-rw-r--r--setup-image.h15
38 files changed, 116 insertions, 526 deletions
diff --git a/Makefile b/Makefile
index ea19e38..5093191 100644
--- a/Makefile
+++ b/Makefile
@@ -3,21 +3,10 @@
#
# (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
#
-# This code 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.
+# This code is distributed under the terms and conditions of the
+# GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
#
-# This code 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 this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-# Or, point your browser to http://www.gnu.org/copyleft/gpl.html
-
# You can change the compile options here or create a Make.config
# in the VDR directory an set them there.
#
diff --git a/README b/README
index d4dc058..bab0249 100644
--- a/README
+++ b/README
@@ -5,13 +5,15 @@ Originaly written by: Kai Tobias Burwieck <kai-at-burwieck.net>
Onno Kreuzinger <o.kreuzinger-at-kreuzinger.biz>
Andreas Brachold <anbr at users.berlios.de>
-Former project's homepage: http://www.burwieck.net/vdr (dead?)
- http://vdr-image.kreuzinger.biz>
-
Maintainer: Andreas Brachold <anbr at users.berlios.de>
Project homepage: http://vdr-image.berlios.de/
+
+Former project's homepage: http://www.burwieck.net/vdr (dead?)
+ http://vdr-image.kreuzinger.biz>
+
+
Some files are from the mp3/MPlayer Plugin. Thanks to Stefan Hülswitt
diff --git a/commands.c b/commands.c
index 2de9861..dcb652b 100644
--- a/commands.c
+++ b/commands.c
@@ -1,22 +1,11 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004 Andreas Brachold <anbr at users.berlios.de>
+ * (c) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <malloc.h>
diff --git a/commands.h b/commands.h
index 245c9a3..8d6e8ab 100644
--- a/commands.h
+++ b/commands.h
@@ -1,22 +1,11 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004 Andreas Brachold <anbr at users.berlios.de>
+ * (c) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
// --- cImageCommands ---------------------------------------------------------
diff --git a/control-image.c b/control-image.c
index 669d145..ef4fb7c 100644
--- a/control-image.c
+++ b/control-image.c
@@ -1,24 +1,13 @@
/*
-* Image plugin to VDR (C++)
-*
-* (C) 2004-2007 Andreas Brachold <anbr at users.berlios.de>
-* based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
-*
-* This code 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.
-*
-* This code 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 this program; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-* Or, point your browser to http://www.gnu.org/copyleft/gpl.html
-*/
+ * Image plugin to VDR (C++)
+ *
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
+ *
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
+ *
+ */
#include <time.h>
diff --git a/control-image.h b/control-image.h
index f262fc0..d9db7ec 100644
--- a/control-image.h
+++ b/control-image.h
@@ -1,23 +1,12 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2005 Andreas Brachold <anbr at users.berlios.de>
+ * (c) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
// --- cImageControl ---------------------------------------------------------
diff --git a/data-image.c b/data-image.c
index 137e264..9dff570 100644
--- a/data-image.c
+++ b/data-image.c
@@ -1,23 +1,12 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2005 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <string.h>
diff --git a/data-image.h b/data-image.h
index 474b344..0b21316 100644
--- a/data-image.h
+++ b/data-image.h
@@ -1,22 +1,12 @@
/*
* Image plugin to VDR (C++)
*
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef ___DATA_IMAGE_H
diff --git a/data.c b/data.c
index 87bf6c5..aedc3e3 100644
--- a/data.c
+++ b/data.c
@@ -1,26 +1,15 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2005 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* (C) 2003 Kai Tobias Burwieck <kai at burwieck.net>
*
* based on MP3/MPlayer plugin to VDR (C++)
* (C) 2001,2002 Stefan Huelswitt <huels at iname.com>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <ctype.h>
diff --git a/data.h b/data.h
index 3e1d4b1..7528c88 100644
--- a/data.h
+++ b/data.h
@@ -1,26 +1,14 @@
/*
* Image plugin to VDR (C++)
*
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
-*
* based on MP3/MPlayer plugin to VDR (C++)
* (C) 2001,2002 Stefan Huelswitt <huels@iname.com>
*
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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.
- *
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef ___DATA_H
diff --git a/exif.c b/exif.c
index 209571f..ed53973 100644
--- a/exif.c
+++ b/exif.c
@@ -1,22 +1,11 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2006-2007 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2006-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
extern "C" {
diff --git a/exif.h b/exif.h
index 3048225..8e19a9b 100644
--- a/exif.h
+++ b/exif.h
@@ -1,22 +1,11 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2006 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2006-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef __MENU_EXIF_H
diff --git a/image.c b/image.c
index a64529e..4827439 100644
--- a/image.c
+++ b/image.c
@@ -5,24 +5,13 @@
* (C) 2004 "Interpohl" <interpohl at vdr-portal.de>
* (C) 2004 O. Kreuzinger <Onno at Kreuzinger.biz>
* (C) 2004 A. Holzhammer for the massive script updates
- * (C) 2004 - 2008 A. Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
*
* based on mp3/mplayer plugin by Stefan Hülswitt <huels at iname.com>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <getopt.h>
diff --git a/image.h b/image.h
index 88091ea..8951035 100644
--- a/image.h
+++ b/image.h
@@ -3,20 +3,9 @@
*
* (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef ___IMAGE_H
diff --git a/libimage/Makefile b/libimage/Makefile
index 1f07375..946ad13 100644
--- a/libimage/Makefile
+++ b/libimage/Makefile
@@ -3,21 +3,9 @@
#
# (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
#
-# This code 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.
+# This code is distributed under the terms and conditions of the
+# GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
#
-# This code 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 this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-# Or, point your browser to http://www.gnu.org/copyleft/gpl.html
-
# You can change the compile options here or create a Make.config
# in the VDR directory an set them there.
#
diff --git a/libimage/pnm.c b/libimage/pnm.c
index f9b6b36..ae1feee 100644
--- a/libimage/pnm.c
+++ b/libimage/pnm.c
@@ -1,24 +1,12 @@
/***************************************************************************
* pnm.c
- * (C) Copyright 2004 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* based on works from Fabian E. Bustamante <fabianb-at-cs.umd.edu>
* Created: Thu Aug 7 2004
- ****************************************************************************/
-
-/*
- * 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
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
*
- * This program 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 Library General Public License for more details.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * 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.
*/
#include <stdio.h>
diff --git a/libimage/pnm.h b/libimage/pnm.h
index f97cbda..9020abc 100644
--- a/libimage/pnm.h
+++ b/libimage/pnm.h
@@ -1,24 +1,12 @@
/***************************************************************************
* pnm.h
- * (C) Copyright 2004 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* based on works from Fabian E. Bustamante <fabianb-at-cs.umd.edu>
* Created: Thu Aug 7 2004
- ****************************************************************************/
-
-/*
- * 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
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
*
- * This program 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 Library General Public License for more details.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * 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.
*/
diff --git a/libimage/xpm.c b/libimage/xpm.c
index bfcb1ad..9de80f0 100644
--- a/libimage/xpm.c
+++ b/libimage/xpm.c
@@ -1,26 +1,14 @@
/***************************************************************************
* xpm.c
*
- * (C) Copyright 2004 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* Created: Thu Aug 11 2004
- *
- ****************************************************************************/
-
-/*
- * 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
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
*
- * This program 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 Library General Public License for more details.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * 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.
*/
+
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
diff --git a/libimage/xpm.h b/libimage/xpm.h
index 3268ce2..18b6f45 100644
--- a/libimage/xpm.h
+++ b/libimage/xpm.h
@@ -1,25 +1,12 @@
/***************************************************************************
* xpm.h
*
- * (C) Copyright 2004 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* Created: Thu Aug 11 2004
- *
- ****************************************************************************/
-
-/*
- * 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
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
*
- * This program 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 Library General Public License for more details.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * 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.
*/
diff --git a/liboutput/Makefile b/liboutput/Makefile
index b9b0e0d..a6ed805 100644
--- a/liboutput/Makefile
+++ b/liboutput/Makefile
@@ -1,23 +1,11 @@
#
# Makefile for Image plugin to VDR
#
-# (C) 2004-2007 Andreas Brachold <anbr at users.berlios.de>
+# (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
#
-# This code 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.
+# This code is distributed under the terms and conditions of the
+# GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
#
-# This code 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 this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-# Or, point your browser to http://www.gnu.org/copyleft/gpl.html
-
# You can change the compile options here or create a Make.config
# in the VDR directory an set them there.
#
diff --git a/liboutput/encode.c b/liboutput/encode.c
index e0bf29f..51b7cc5 100644
--- a/liboutput/encode.c
+++ b/liboutput/encode.c
@@ -1,23 +1,12 @@
/*
* Image plugin to VDR (C++)
*
- * (C) Copyright 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* Created: Thu Aug 5 2004
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <stdio.h>
diff --git a/liboutput/encode.h b/liboutput/encode.h
index 2959197..37dd091 100644
--- a/liboutput/encode.h
+++ b/liboutput/encode.h
@@ -1,23 +1,12 @@
/*
* Image plugin to VDR (C++)
*
- * (C) Copyright 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* Created: Thu Aug 5 2004
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef _ENCODE_H
diff --git a/liboutput/stillimage-player.c b/liboutput/stillimage-player.c
index 102c30d..7b3a439 100644
--- a/liboutput/stillimage-player.c
+++ b/liboutput/stillimage-player.c
@@ -1,23 +1,12 @@
/*
* Image plugin to VDR (C++)
*
- * (C) Copyright 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* Created: Thu Aug 5 2004
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include "stillimage-player.h"
diff --git a/liboutput/stillimage-player.h b/liboutput/stillimage-player.h
index ee96649..70df783 100644
--- a/liboutput/stillimage-player.h
+++ b/liboutput/stillimage-player.h
@@ -1,23 +1,12 @@
/*
* Image plugin to VDR (C++)
*
- * (C) Copyright 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* Created: Thu Aug 5 2004
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef STILLIMAGEPLAYER_H
diff --git a/liboutput/stillimage.c b/liboutput/stillimage.c
index 10b5d5b..703b049 100644
--- a/liboutput/stillimage.c
+++ b/liboutput/stillimage.c
@@ -7,20 +7,9 @@
* parts of the code (c) Peter Seyringer
* (c) Marcel Wiesweg
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <string.h>
diff --git a/liboutput/stillimage.h b/liboutput/stillimage.h
index 1ca6cd3..6818f1d 100644
--- a/liboutput/stillimage.h
+++ b/liboutput/stillimage.h
@@ -4,20 +4,9 @@
* (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* Created: Thu Aug 5 2004
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef STILLIMAGE_H
diff --git a/list.c b/list.c
index f16e53d..cc7d4fb 100644
--- a/list.c
+++ b/list.c
@@ -1,22 +1,11 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2005 A. Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <string.h>
diff --git a/list.h b/list.h
index d82f7b0..47ba66e 100644
--- a/list.h
+++ b/list.h
@@ -1,22 +1,11 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef ___IMAGE_LIST_H
diff --git a/menu-commands.c b/menu-commands.c
index 898adf4..97abe01 100644
--- a/menu-commands.c
+++ b/menu-commands.c
@@ -1,24 +1,14 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2007 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
+
#include <errno.h>
#include "menu-commands.h"
#include <vdr/i18n.h>
diff --git a/menu-commands.h b/menu-commands.h
index 828a2e1..1db04ca 100644
--- a/menu-commands.h
+++ b/menu-commands.h
@@ -1,22 +1,11 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2005 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef __MENU_COMMANDS_H
diff --git a/menu-image.c b/menu-image.c
index 203402f..c42bfc3 100644
--- a/menu-image.c
+++ b/menu-image.c
@@ -1,23 +1,12 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2007 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <ctype.h>
diff --git a/menu-image.h b/menu-image.h
index 86442d7..52c6eda 100644
--- a/menu-image.h
+++ b/menu-image.h
@@ -1,22 +1,12 @@
/*
* Image plugin to VDR (C++)
*
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef ___MENU_IMAGE_H
diff --git a/menu.c b/menu.c
index e211225..daf3b87 100644
--- a/menu.c
+++ b/menu.c
@@ -1,26 +1,15 @@
/*
* image plugin to VDR (C++)
*
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* (C) 2004 "Interpohl" <interpohl-at-vdr-portal.de>
- * (C) 2004-2007 A.Brachold <anbr at users.berlios.de>
* (C) 2004 O.Kreuzinger <Onno-at-Kreuzinger.biz>
- * (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
+ * (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
* (C) 2001,2002 Stefan Huelswitt <huels-at-iname.com>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <ctype.h>
diff --git a/menu.h b/menu.h
index 263d879..36f0c88 100644
--- a/menu.h
+++ b/menu.h
@@ -1,25 +1,15 @@
/*
* Image plugin to VDR (C++)
*
+ * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
*
* based on MP3/MPlayer plugin to VDR (C++)
* (C) 2001,2002 Stefan Huelswitt <huels@iname.com>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef ___MENU_H
diff --git a/player-image.c b/player-image.c
index b6c885a..404268e 100644
--- a/player-image.c
+++ b/player-image.c
@@ -4,20 +4,9 @@
* (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <ctype.h>
diff --git a/player-image.h b/player-image.h
index 3eb592b..026b21f 100644
--- a/player-image.h
+++ b/player-image.h
@@ -4,20 +4,9 @@
* (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef ___DVB_IMAGE_H
diff --git a/setup-image.c b/setup-image.c
index bc548b5..c9bdc75 100644
--- a/setup-image.c
+++ b/setup-image.c
@@ -7,21 +7,9 @@
* based on MP3/MPlayer plugin to VDR (C++)
* (C) 2001,2002 Stefan Huelswitt <huels-at-iname.com>
*
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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.
- *
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <string.h>
diff --git a/setup-image.h b/setup-image.h
index 8ddd2c6..ebea2a7 100644
--- a/setup-image.h
+++ b/setup-image.h
@@ -4,20 +4,9 @@
* (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
* based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
- * This code 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.
+ * This code is distributed under the terms and conditions of the
+ * GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
- * This code 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 this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#ifndef ___SETUP_IMAGE_H