summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2010-04-04 19:20:29 +0000
committercvs2svn <admin@example.com>2010-04-04 19:20:29 +0000
commitcde3ee7dade952baf6274f38ca81b316fbcf0c6a (patch)
treefd73f71d41a6d9b9a66c37eb3e6e172a6155aed3 /include
parent07de8081b90d309a2b8aaa6050b8e71fa017ae2f (diff)
downloadxineliboutput-libbluray-r103.tar.gz
xineliboutput-libbluray-r103.tar.bz2
This commit was manufactured by cvs2svn to create tag 'libbluray-r103'.libbluray-r103
Diffstat (limited to 'include')
-rw-r--r--include/vdr-xineliboutput/service_pip.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/include/vdr-xineliboutput/service_pip.h b/include/vdr-xineliboutput/service_pip.h
deleted file mode 100644
index ee168fcf..00000000
--- a/include/vdr-xineliboutput/service_pip.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * vdr-xineliboutput/service_pip.h: xineliboutput Picture-In-Picture service interface
- *
- * See the main source file 'xineliboutput.c' for copyright information and
- * how to reach the author.
- *
- * $Id: service_pip.h,v 1.1 2010-03-12 21:15:05 phintuka Exp $
- *
- */
-
-#ifndef VDR_XINELIBOUTPUT_SERVICE_PIP_H
-#define VDR_XINELIBOUTPUT_SERVICE_PIP_H
-
-/*
- * Example:
- *
- * cXineliboutputPipService *pip_if;
- *
- * if (Plugin->Service(XINELIBOUTPUT_SERVICE_PIP_ID, &pip_if)) {
- * while(...)
- * pip_if->PlayTs(...);
- * delete pip_if;
- * }
- *
- */
-
-#define XINELIBOUTPUT_SERVICE_PIP_ID "Xineliboutput_Pip_Open"
-
-#define XINELIBOUTPUT_SERVICE_PIP_VERSION 0x0100
-
-class cXineliboutputPipService {
-
- public:
-
- /* Set location and size (in % of full screen)
- * Example:
- * Blend PIP picture to left-top corner, resize to 20% of full screen:
- * SetPosition(5, 5, 20, 20);
- */
- virtual void SetPosition(uint X, uint Y, uint W, uint H) = 0;
-
- /* PIP input: single MPEG-TS video packet */
- virtual int PlayTs(const uint8_t *Data) = 0;
-
- virtual ~cXineliboutputPipService() {};
-};
-
-
-#endif /* VDR_XINELIBOUTPUT_SERVICE_PIP_H */