summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2019-12-20 08:35:38 +0100
committerhorchi <vdr@jwendel.de>2019-12-20 08:35:38 +0100
commita5d6d09bfae8ee47d77dc4c0c5ef994b47240f44 (patch)
tree8f0fe83786444b8d98e6860f6481681fc9195cb4
parent4baeb0b3f7a628adcf0186e48acfce75fb4b1c94 (diff)
downloadvdr-plugin-seduatmo-a5d6d09bfae8ee47d77dc4c0c5ef994b47240f44.tar.gz
vdr-plugin-seduatmo-a5d6d09bfae8ee47d77dc4c0c5ef994b47240f44.tar.bz2
2019-12-20: Version 0.0.8\n Added support of softhdvaapi and softhddrm plugin\n\n0.0.8
-rw-r--r--HISTORY.h7
-rw-r--r--seduthread.c6
2 files changed, 11 insertions, 2 deletions
diff --git a/HISTORY.h b/HISTORY.h
index 2d1f445..5e0e8ab 100644
--- a/HISTORY.h
+++ b/HISTORY.h
@@ -7,8 +7,8 @@
*
*/
-#define _VERSION "0.0.7"
-#define VERSION_DATE "14.10.2018"
+#define _VERSION "0.0.8"
+#define VERSION_DATE "20.12.2019"
#ifdef GIT_REV
# define VERSION _VERSION "-GIT" GIT_REV
@@ -19,6 +19,9 @@
/*
* ------------------------------------
+2019-12-20: Version 0.0.8
+ Added support of softhdvaapi and softhddrm plugin
+
2018-10-14: Version 0.0.7
- added: Plugin service interface to change mode
diff --git a/seduthread.c b/seduthread.c
index 93a8054..c5b3530 100644
--- a/seduthread.c
+++ b/seduthread.c
@@ -156,6 +156,12 @@ int cSeduThread::grabImage()
if (!softHdPlugin)
softHdPlugin = cPluginManager::GetPlugin("softhdcuvid");
+ if (!softHdPlugin)
+ softHdPlugin = cPluginManager::GetPlugin("softhdvaapi");
+
+ if (!softHdPlugin)
+ softHdPlugin = cPluginManager::GetPlugin("softhddrm");
+
int softHdGrabService = (softHdPlugin && softHdPlugin->Service(ATMO1_GRAB_SERVICE, 0));
if (!softHdGrabService)