From 47a818b11cab22e0c655a45688917b2075a5d74e Mon Sep 17 00:00:00 2001 From: Thomas Reufer Date: Fri, 26 Feb 2016 15:00:57 +0100 Subject: added proper GPL header to every source file (suggested by Tobias Grimm) --- HISTORY | 1 + audio.c | 17 +++++++++++++++-- audio.h | 17 +++++++++++++++-- display.c | 17 +++++++++++++++-- display.h | 17 +++++++++++++++-- omx.c | 17 +++++++++++++++-- omx.h | 17 +++++++++++++++-- omxdevice.c | 17 +++++++++++++++-- omxdevice.h | 17 +++++++++++++++-- ovgosd.c | 17 +++++++++++++++-- ovgosd.h | 17 +++++++++++++++-- rpihddevice.c | 17 +++++++++++++++-- setup.c | 17 +++++++++++++++-- setup.h | 17 +++++++++++++++-- tools.h | 17 +++++++++++++++-- 15 files changed, 211 insertions(+), 28 deletions(-) diff --git a/HISTORY b/HISTORY index 934ae77..a202d8e 100644 --- a/HISTORY +++ b/HISTORY @@ -5,6 +5,7 @@ VDR Plugin 'rpihddevice' Revision History - set device name - add option for dual display usage, see README - fixed: + - added proper GPL header to every source file (suggested by Tobias Grimm) - wait until dispmanx element is removed after OSD reset - proper release default surface after OSD reset - don't ignore anti alias option for scaled bitmap drawing diff --git a/audio.c b/audio.c index 6a2864a..a5e1fb6 100644 --- a/audio.c +++ b/audio.c @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 "audio.h" diff --git a/audio.h b/audio.h index 8ff2b47..1092ebe 100644 --- a/audio.h +++ b/audio.h @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 AUDIO_H diff --git a/display.c b/display.c index 010ecd7..f4f5273 100644 --- a/display.c +++ b/display.c @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 "display.h" diff --git a/display.h b/display.h index 455a9e2..7a203e3 100644 --- a/display.h +++ b/display.h @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 DISPLAY_H diff --git a/omx.c b/omx.c index eea90fd..7e6c33a 100644 --- a/omx.c +++ b/omx.c @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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/omx.h b/omx.h index 8544e01..c0daffa 100644 --- a/omx.h +++ b/omx.h @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 OMX_H diff --git a/omxdevice.c b/omxdevice.c index 616c449..3103eda 100644 --- a/omxdevice.c +++ b/omxdevice.c @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 "omxdevice.h" diff --git a/omxdevice.h b/omxdevice.h index 7e88d98..63554e0 100644 --- a/omxdevice.h +++ b/omxdevice.h @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 OMX_DEVICE_H diff --git a/ovgosd.c b/ovgosd.c index 347a605..683e24f 100644 --- a/ovgosd.c +++ b/ovgosd.c @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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/ovgosd.h b/ovgosd.h index 9803c4a..dd9ea77 100644 --- a/ovgosd.h +++ b/ovgosd.h @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 OVG_OSD_H diff --git a/rpihddevice.c b/rpihddevice.c index 5f23d63..031ff65 100644 --- a/rpihddevice.c +++ b/rpihddevice.c @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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.c b/setup.c index 4a46608..6b030f9 100644 --- a/setup.c +++ b/setup.c @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 "setup.h" diff --git a/setup.h b/setup.h index 55d74ce..a91b8e1 100644 --- a/setup.h +++ b/setup.h @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 SETUP_H diff --git a/tools.h b/tools.h index 46a8a54..edcf572 100644 --- a/tools.h +++ b/tools.h @@ -1,7 +1,20 @@ /* - * See the README file for copyright information and how to reach the author. + * rpihddevice - VDR HD output device for Raspberry Pi + * Copyright (C) 2014, 2015, 2016 Thomas Reufer * - * $Id$ + * 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 TOOLS_H -- cgit v1.2.3