diff options
-rw-r--r-- | Makefile | 15 | ||||
-rw-r--r-- | README | 8 | ||||
-rw-r--r-- | commands.c | 17 | ||||
-rw-r--r-- | commands.h | 17 | ||||
-rw-r--r-- | control-image.c | 29 | ||||
-rw-r--r-- | control-image.h | 17 | ||||
-rw-r--r-- | data-image.c | 17 | ||||
-rw-r--r-- | data-image.h | 16 | ||||
-rw-r--r-- | data.c | 17 | ||||
-rw-r--r-- | data.h | 18 | ||||
-rw-r--r-- | exif.c | 17 | ||||
-rw-r--r-- | exif.h | 17 | ||||
-rw-r--r-- | image.c | 17 | ||||
-rw-r--r-- | image.h | 15 | ||||
-rw-r--r-- | libimage/Makefile | 16 | ||||
-rw-r--r-- | libimage/pnm.c | 18 | ||||
-rw-r--r-- | libimage/pnm.h | 18 | ||||
-rw-r--r-- | libimage/xpm.c | 20 | ||||
-rw-r--r-- | libimage/xpm.h | 19 | ||||
-rw-r--r-- | liboutput/Makefile | 18 | ||||
-rw-r--r-- | liboutput/encode.c | 17 | ||||
-rw-r--r-- | liboutput/encode.h | 17 | ||||
-rw-r--r-- | liboutput/stillimage-player.c | 17 | ||||
-rw-r--r-- | liboutput/stillimage-player.h | 17 | ||||
-rw-r--r-- | liboutput/stillimage.c | 15 | ||||
-rw-r--r-- | liboutput/stillimage.h | 15 | ||||
-rw-r--r-- | list.c | 17 | ||||
-rw-r--r-- | list.h | 17 | ||||
-rw-r--r-- | menu-commands.c | 18 | ||||
-rw-r--r-- | menu-commands.h | 17 | ||||
-rw-r--r-- | menu-image.c | 17 | ||||
-rw-r--r-- | menu-image.h | 16 | ||||
-rw-r--r-- | menu.c | 19 | ||||
-rw-r--r-- | menu.h | 16 | ||||
-rw-r--r-- | player-image.c | 15 | ||||
-rw-r--r-- | player-image.h | 15 | ||||
-rw-r--r-- | setup-image.c | 16 | ||||
-rw-r--r-- | setup-image.h | 15 |
38 files changed, 116 insertions, 526 deletions
@@ -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. # @@ -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 @@ -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> @@ -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 @@ -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> @@ -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 @@ -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" { @@ -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 @@ -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> @@ -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 @@ -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> @@ -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 @@ -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> @@ -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 |