From fd2fe78b93649e95cb03a04070e8d05e22ebaf1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=BCnther?= Date: Sat, 27 Mar 2010 15:28:15 +0100 Subject: Improved copyright and license information in the header of all source files --- HISTORY | 4 +++- Makefile | 19 ++++++++++++++++++- README | 30 +++++++++++++++++++++++------- decoder.c | 17 ++++++++++++++++- decoder.h | 17 ++++++++++++++++- i18n.c | 17 ++++++++++++++++- i18n.h | 17 ++++++++++++++++- osd.c | 20 ++++++++++++++++++-- osd.h | 18 +++++++++++++++++- osd_info.c | 21 +++++++++++++++++++++ osd_info.h | 17 ++++++++++++++++- osdpip.c | 18 +++++++++++++++++- pes.c | 16 +++++++++++++++- pes.h | 16 +++++++++++++++- po/ca_ES.po | 19 ++++++++----------- po/cs_CZ.po | 17 ++++++++--------- po/da_DK.po | 17 ++++++++--------- po/de_DE.po | 20 +++++++++++--------- po/el_GR.po | 17 ++++++++--------- po/es_ES.po | 17 ++++++++--------- po/et_EE.po | 17 ++++++++--------- po/fi_FI.po | 17 +++++++---------- po/fr_FR.po | 19 ++++++++----------- po/hr_HR.po | 18 ++++++++---------- po/hu_HU.po | 18 ++++++++---------- po/it_IT.po | 14 ++++++-------- po/nl_NL.po | 19 ++++++++----------- po/nn_NO.po | 18 ++++++++---------- po/pl_PL.po | 17 ++++++++--------- po/pt_PT.po | 17 ++++++++--------- po/ro_RO.po | 18 ++++++++---------- po/ru_RU.po | 17 ++++++++--------- po/sl_SI.po | 18 ++++++++---------- po/sv_SE.po | 18 ++++++++---------- po/tr_TR.po | 17 ++++++++--------- quantize.c | 16 +++++++++++++++- quantize.h | 16 +++++++++++++++- receiver.c | 18 +++++++++++++++++- receiver.h | 18 +++++++++++++++++- remux.c | 25 ++++++++++++++++++++----- remux.h | 30 ++++++++++++++++++++++++++---- setup.c | 16 +++++++++++++++- setup.h | 16 +++++++++++++++- 43 files changed, 535 insertions(+), 236 deletions(-) diff --git a/HISTORY b/HISTORY index 1b96187..fb12e78 100644 --- a/HISTORY +++ b/HISTORY @@ -11,10 +11,12 @@ ____-__-__: Version 0.1.0 - Added support for VDR >= 1.7.13 (Make.global) - Use pkg-config to find compilation flags, libs etc for ffmpeg - Fixed ffmpeg compatibility issues with newer ffmpeg versions +- Improved copyright and license information in the header of all source files 2010-01-01: Version 0.0.10a - added support for VDR 1.7.x - added PIP while replaying +- added italian translations (thanks to Diego Pierotto) 2008-05-03: Version 0.0.10 (written by Andreas Regel) - support swscale functions of recent FFMPEG versions. Have a look at @@ -39,7 +41,7 @@ ____-__-__: Version 0.1.0 - Added missing inclusion of . - Added new colour reduction mode using 256 dithered colours (thanks to Martin Wache). -- Added french translations (thanks to micky979) +- Added french translations (thanks to micky979 at vdrportal.de) 2005-05-15: Version 0.0.8 (written by Andreas Regel) diff --git a/Makefile b/Makefile index ef4ed4c..7ed33d6 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,23 @@ # -# Makefile for a Video Disk Recorder plugin +# OSD Picture in Picture plugin for the Video Disk Recorder # +# Copyright (C) 2010 Mitchm at vdrportal.de +# Copyright (C) 2004 - 2008 Andreas Regel +# Copyright (C) 2004 Sascha Volkenandt +# +# 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 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., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # 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 c4ee8ef..8faf472 100644 --- a/README +++ b/README @@ -1,14 +1,30 @@ -This is a "plugin" for the Video Disk Recorder (VDR). +OSD Picture in Picture plugin for the Video Disk Recorder +--------------------------------------------------------- -Written by: Sascha Volkenandt - Andreas Regel +Copyright (C) 2010 Mitchm at vdrportal.de +Copyright (C) 2004 - 2008 Andreas Regel +Copyright (C) 2004 - 2005 Sascha Volkenandt -Project's old homepage: http://linux.kompiliert.net/index.php?view=osdpip - http://www.powarman.de/files/osdpip +Project's homepage: http://projects.vdr-developer.org/projects/show/plg-osdpip -Latest version available at: http://projects.vdr-developer.org/projects/show/plg-osdpip +Old homepages: http://linux.kompiliert.net/index.php?view=osdpip + http://www.powarman.de/files/osdpip -See the file COPYING for license information. +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 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., +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +See the file COPYING for the full license information. Requirements: diff --git a/decoder.c b/decoder.c index faee77b..3707d7c 100644 --- a/decoder.c +++ b/decoder.c @@ -1,7 +1,22 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 Sascha Volkenandt + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include diff --git a/decoder.h b/decoder.h index f503402..c7fe120 100644 --- a/decoder.h +++ b/decoder.h @@ -1,7 +1,22 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 Sascha Volkenandt + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef VDR_OSDPIP_DECODER_H diff --git a/i18n.c b/i18n.c index ffe874a..efe97df 100644 --- a/i18n.c +++ b/i18n.c @@ -1,7 +1,22 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 Sascha Volkenandt + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #if (APIVERSNUM < 10507) diff --git a/i18n.h b/i18n.h index 1518403..db6dce3 100644 --- a/i18n.h +++ b/i18n.h @@ -1,7 +1,22 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 Sascha Volkenandt + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef VDR_OSDPIP_I18N_H diff --git a/osd.c b/osd.c index 4814be6..db021e4 100644 --- a/osd.c +++ b/osd.c @@ -1,9 +1,25 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2007 Martin Wache (dithered 256 color mode) + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 - 2005 Sascha Volkenandt * - * Copyright (C) 2007 Martin Wache for the dithered 256 color mode + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include diff --git a/osd.h b/osd.h index d906d71..8cf3cb3 100644 --- a/osd.h +++ b/osd.h @@ -1,7 +1,23 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 Sascha Volkenandt + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef VDR_OSDPIP_OSD_H diff --git a/osd_info.c b/osd_info.c index 722d3ab..58f9583 100644 --- a/osd_info.c +++ b/osd_info.c @@ -1,3 +1,24 @@ +/* + * OSD Picture in Picture plugin for the Video Disk Recorder + * + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2005 - 2008 Andreas Regel + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #include "osd_info.h" #include "setup.h" #include "i18n.h" diff --git a/osd_info.h b/osd_info.h index 2f66ffe..e408328 100644 --- a/osd_info.h +++ b/osd_info.h @@ -1,7 +1,22 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2005 - 2008 Andreas Regel + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef VDR_OSDPIP_OSD_INFO_H diff --git a/osdpip.c b/osdpip.c index 2e6e89f..29a73d1 100644 --- a/osdpip.c +++ b/osdpip.c @@ -1,7 +1,23 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 - 2005 Sascha Volkenandt + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "decoder.h" diff --git a/pes.c b/pes.c index 1d4c7fb..eb6aaaf 100644 --- a/pes.c +++ b/pes.c @@ -1,7 +1,21 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "pes.h" diff --git a/pes.h b/pes.h index 91fa63c..aae7724 100644 --- a/pes.h +++ b/pes.h @@ -1,7 +1,21 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef VDR_OSDPIP_PES_H diff --git a/po/ca_ES.po b/po/ca_ES.po index 8316ad2..c3427fb 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -1,18 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Marc Rovira Vall , 2003 -# Ramon Roca , 2003 -# Jordi Vilà , 2003 +# Catalanian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Jordi Vilà \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index f7f8525..aa0bb44 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Vladimír Bárta , 2006 +# Czech translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Vladimír Bárta \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/da_DK.po b/po/da_DK.po index b468406..8c4e727 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Mogens Elneff , 2004 +# Danish translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Mogens Elneff \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/de_DE.po b/po/de_DE.po index a030355..be5747c 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -1,16 +1,18 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Klaus Schmidinger , 2000 +# German translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. +# Sascha Volkenandt , 2004. +# Andreas Regel , 2004, 2005, 2008. +# Mitchm at vdrportal.de, 2010. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Klaus Schmidinger \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-01-01 22:29+0100\n" +"Last-Translator: Mitchm at vdrportal.de\n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/el_GR.po b/po/el_GR.po index 72ffa64..9154242 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Dimitrios Dimitrakos , 2002 +# Greek translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Dimitrios Dimitrakos \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-7\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/es_ES.po b/po/es_ES.po index f797abd..8411cbf 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Ruben Nunez Francisco , 2002 +# Spanish translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Ruben Nunez Francisco \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/et_EE.po b/po/et_EE.po index ad07902..e400bdd 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Arthur Konovalov , 2004 +# Estonian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Arthur Konovalov \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-13\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/fi_FI.po b/po/fi_FI.po index 45d39c7..c04d5f6 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -1,17 +1,14 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Hannu Savolainen , 2002 -# Jaakko Hyvätti , 2002 -# Niko Tarnanen , 2003 -# Rolf Ahrenberg , 2003 +# Finnish translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. +# Rolf Ahrenberg , 2004, 2005, 2008. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2008-04-27 18:44+0200\n" "Last-Translator: Rolf Ahrenberg \n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/po/fr_FR.po b/po/fr_FR.po index 0a44c48..c277f22 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -1,18 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Jean-Claude Repetto , 2001 -# Olivier Jacques , 2003 -# Gregoire Favre , 2003 -# Nicolas Huillard , 2005 +# French translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. +# micky979 at vdrportal.de, 2008. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.0.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Nicolas Huillard \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2008-04-13 20:07+0200\n" +"Last-Translator: micky979 at vdrportal.de\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" diff --git a/po/hr_HR.po b/po/hr_HR.po index 6ed0cfc..80d2c33 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.po @@ -1,17 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Drazen Dupor , 2004 -# Dino Ravnic , 2004 +# Croatian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Drazen Dupor \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/hu_HU.po b/po/hu_HU.po index 04fca2a..886742d 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -1,17 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Istvan Koenigsberger , 2002 -# Guido Josten , 2002 +# Hungarian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Istvan Koenigsberger , Guido Josten \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/it_IT.po b/po/it_IT.po index d6ed295..5f53cb9 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -1,15 +1,13 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Alberto Carraro , 2001 -# Antonio Ospite , 2003 -# Sean Carlos , 2005 +# Italian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. +# Diego Pierotto , 2010. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-05-03 21:57+0200\n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" "PO-Revision-Date: 2010-01-13 00:15+0100\n" "Last-Translator: Diego Pierotto \n" "Language-Team: \n" diff --git a/po/nl_NL.po b/po/nl_NL.po index 45b9aaa..8969f8d 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -1,18 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Arnold Niessen , 2001 -# Hans Dingemans , 2003 -# Maarten Wisse , 2005 +# Dutch translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Maarten Wisse \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/nn_NO.po b/po/nn_NO.po index 3f69191..22e0e48 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -1,17 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Jørgen Tvedt , 2001 -# Truls Slevigen , 2002 +# Norwegian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Truls Slevigen \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/pl_PL.po b/po/pl_PL.po index 164e98d..b0128b8 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Michael Rakowski , 2002 +# Polish translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Michael Rakowski \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/pt_PT.po b/po/pt_PT.po index a7e903a..1cf53b4 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Paulo Lopes , 2001 +# Portuguese translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Paulo Lopes \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/ro_RO.po b/po/ro_RO.po index a9a0fa6..c77eeae 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -1,17 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Paul Lacatus , 2002 -# Lucian Muresan , 2004 +# Romanian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Lucian Muresan \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/ru_RU.po b/po/ru_RU.po index 15cc597..2807775 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Vyacheslav Dikonov , 2004 +# Russian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Vyacheslav Dikonov \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-5\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/sl_SI.po b/po/sl_SI.po index 35d6969..4ceeb80 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.po @@ -1,17 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Miha Setina , 2000 -# Matjaz Thaler , 2003 +# Slovenian translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Matjaz Thaler \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/sv_SE.po b/po/sv_SE.po index 5a4a5d5..530cbf3 100644 --- a/po/sv_SE.po +++ b/po/sv_SE.po @@ -1,17 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Tomas Prybil , 2002 -# Jan Ekholm , 2003 +# Swedish translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Tomas Prybil \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/po/tr_TR.po b/po/tr_TR.po index 56f6cc3..5804237 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -1,16 +1,15 @@ -# VDR plugin language source file. -# Copyright (C) 2007 Klaus Schmidinger -# This file is distributed under the same license as the VDR package. -# Oktay Yolgeçen , 2007 +# Turkish translations for vdr-osdpip package. +# Copyright (C) 2004 - 2008 Sascha Volkenandt, Andreas Regel +# This file is distributed under the same license as the vdr-osdpip package. # msgid "" msgstr "" -"Project-Id-Version: VDR 1.5.7\n" +"Project-Id-Version: vdr-osdpip 0.1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-02 19:39+0100\n" -"PO-Revision-Date: 2008-04-27 18:00+0200\n" -"Last-Translator: Oktay Yolgeçen \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-03-27 14:40+0100\n" +"PO-Revision-Date: 2010-03-27 14:40+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-9\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/quantize.c b/quantize.c index e0f307d..82b1971 100644 --- a/quantize.c +++ b/quantize.c @@ -1,10 +1,24 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * + * Copyright (C) 2004 - 2008 Andreas Regel + * * The Wu Quantizer is based on Benny's Wu quantizer v1.0 and on Xaolin Wu * quantizer from the Graphics Gems * - * See the README file for copyright information and how to reach the author. + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include diff --git a/quantize.h b/quantize.h index 11dd527..bd50f96 100644 --- a/quantize.h +++ b/quantize.h @@ -1,7 +1,21 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef VDR_OSDPIP_QUANTIZE_H diff --git a/receiver.c b/receiver.c index a0c49f2..8f70997 100644 --- a/receiver.c +++ b/receiver.c @@ -1,7 +1,23 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 Sascha Volkenandt + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "receiver.h" diff --git a/receiver.h b/receiver.h index a0855aa..2e9d020 100644 --- a/receiver.h +++ b/receiver.h @@ -1,7 +1,23 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2004 - 2008 Andreas Regel + * Copyright (C) 2004 Sascha Volkenandt + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef VDR_OSDPIP_RECEIVER_H diff --git a/remux.c b/remux.c index 5375686..10b667b 100644 --- a/remux.c +++ b/remux.c @@ -1,17 +1,32 @@ /* - * remux.c: A streaming MPEG2 remultiplexer + * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the main source file 'vdr.c' for copyright information and - * how to reach the author. + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2005 - 2007 Reinhard Nissl + * Copyright (C) 2001 - 2008 Klaus Schmidinger + * + * remux.c: A streaming MPEG2 remultiplexer (taken from VDR-1.6.0) * * The parts of this code that implement cTS2PES have been taken from * the Linux DVB driver's 'tuxplayer' example and were rewritten to suit * VDR's needs. * * The cRepacker family's code was originally written by Reinhard Nissl , - * and adapted to the VDR coding style by Klaus.Schmidinger@cadsoft.de. + * and adapted to the VDR coding style by Klaus.Schmidinger@tvdr.de. + * + * 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 General Public License for more details. * - * $Id: remux.c 1.64 2007/11/25 13:56:03 kls Exp $ + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "remux.h" diff --git a/remux.h b/remux.h index 833cb2f..e58fb66 100644 --- a/remux.h +++ b/remux.h @@ -1,10 +1,32 @@ /* - * remux.h: A streaming MPEG2 remultiplexer + * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the main source file 'vdr.c' for copyright information and - * how to reach the author. + * Copyright (C) 2010 Mitchm at vdrportal.de + * Copyright (C) 2005 - 2007 Reinhard Nissl + * Copyright (C) 2001 - 2008 Klaus Schmidinger * - * $Id: remux.h 1.17 2007/09/02 10:19:06 kls Exp $ + * remux.h: A streaming MPEG2 remultiplexer (taken from VDR-1.6.0) + * + * The parts of this code that implement cTS2PES have been taken from + * the Linux DVB driver's 'tuxplayer' example and were rewritten to suit + * VDR's needs. + * + * The cRepacker family's code was originally written by Reinhard Nissl , + * and adapted to the VDR coding style by Klaus.Schmidinger@tvdr.de. + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __REMUX_PIP_H diff --git a/setup.c b/setup.c index 941fa73..6163d1c 100644 --- a/setup.c +++ b/setup.c @@ -1,7 +1,21 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include diff --git a/setup.h b/setup.h index af2c0fe..397b1d4 100644 --- a/setup.h +++ b/setup.h @@ -1,7 +1,21 @@ /* * OSD Picture in Picture plugin for the Video Disk Recorder * - * See the README file for copyright information and how to reach the author. + * Copyright (C) 2004 - 2008 Andreas Regel + * + * 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 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef VDR_OSDPIP_SETUP_H -- cgit v1.2.3