diff options
author | Andreas Regel <andreas.regel@powarman.de> | 2008-05-03 22:18:00 +0200 |
---|---|---|
committer | Andreas Regel <andreas.regel@powarman.de> | 2008-05-03 22:18:00 +0200 |
commit | 15f8e9b463ac432693b114c9b9f40a2155ae9dfb (patch) | |
tree | 75d96af805439e525c3afcc3e6c5abc99dc84159 /osdpip.c | |
parent | cac6362d2207752926f9339c1c547d60d5c2a6a0 (diff) | |
download | vdr-plugin-osdpip-15f8e9b463ac432693b114c9b9f40a2155ae9dfb.tar.gz vdr-plugin-osdpip-15f8e9b463ac432693b114c9b9f40a2155ae9dfb.tar.bz2 |
Release version 0.0.10v0.0.10
- support swscale functions of recent FFMPEG versions. Have a look at
README to see how to deactivate it for older FFPMEG versions.
- support changed header file structure of recent FFMPEG versions. Have
a look at README to see how to activate this.
- added zapping through PiP channel based on a patch by pinky666 from
vdr-portal. You can activate it via the green button.
Diffstat (limited to 'osdpip.c')
-rw-r--r-- | osdpip.c | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -4,15 +4,7 @@ * See the README file for copyright information and how to reach the author. */ -extern "C" -{ -#ifdef HAVE_FFMPEG_STATIC -# include <avcodec.h> -#else -# include <ffmpeg/avcodec.h> -#endif -} - +#include "decoder.h" #include "osd.h" #include "setup.h" #if (APIVERSNUM < 10507) @@ -21,7 +13,7 @@ extern "C" #include <vdr/plugin.h> -static const char *VERSION = "0.0.9"; +static const char *VERSION = "0.0.10"; static const char *DESCRIPTION = trNOOP("OSD Picture-in-Picture"); static const char *MAINMENUENTRY = trNOOP("Picture-in-Picture"); |