diff options
| author | Thomas Reufer <thomas@reufer.ch> | 2016-02-26 15:00:57 +0100 |
|---|---|---|
| committer | Thomas Reufer <thomas@reufer.ch> | 2016-02-26 15:00:57 +0100 |
| commit | 47a818b11cab22e0c655a45688917b2075a5d74e (patch) | |
| tree | 7f61c90183ff5bc7630abfcf2fea9f5e35c3b2a6 | |
| parent | f77d07a3730d17c2fab9662b7336c78508897c36 (diff) | |
| download | vdr-plugin-rpihddevice-47a818b11cab22e0c655a45688917b2075a5d74e.tar.gz vdr-plugin-rpihddevice-47a818b11cab22e0c655a45688917b2075a5d74e.tar.bz2 | |
added proper GPL header to every source file (suggested by Tobias Grimm)
| -rw-r--r-- | HISTORY | 1 | ||||
| -rw-r--r-- | audio.c | 17 | ||||
| -rw-r--r-- | audio.h | 17 | ||||
| -rw-r--r-- | display.c | 17 | ||||
| -rw-r--r-- | display.h | 17 | ||||
| -rw-r--r-- | omx.c | 17 | ||||
| -rw-r--r-- | omx.h | 17 | ||||
| -rw-r--r-- | omxdevice.c | 17 | ||||
| -rw-r--r-- | omxdevice.h | 17 | ||||
| -rw-r--r-- | ovgosd.c | 17 | ||||
| -rw-r--r-- | ovgosd.h | 17 | ||||
| -rw-r--r-- | rpihddevice.c | 17 | ||||
| -rw-r--r-- | setup.c | 17 | ||||
| -rw-r--r-- | setup.h | 17 | ||||
| -rw-r--r-- | tools.h | 17 |
15 files changed, 211 insertions, 28 deletions
@@ -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 @@ -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" @@ -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 @@ -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" @@ -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 @@ -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 <queue> @@ -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 @@ -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 <vector> @@ -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 <vdr/plugin.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 */ #include "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 @@ -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 |
