summaryrefslogtreecommitdiff
path: root/src/xine-engine/osd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine/osd.h')
-rw-r--r--src/xine-engine/osd.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/xine-engine/osd.h b/src/xine-engine/osd.h
index a0aa75b7f..9a58f1a7c 100644
--- a/src/xine-engine/osd.h
+++ b/src/xine-engine/osd.h
@@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
* OSD stuff (text and graphic primitives)
- * $Id: osd.h,v 1.20 2003/11/19 19:43:23 miguelfreitas Exp $
+ * $Id: osd.h,v 1.21 2003/11/26 01:03:32 miguelfreitas Exp $
*/
#ifndef HAVE_OSD_H
@@ -73,7 +73,6 @@ struct xine_osd_s {
osd_object_t osd;
};
-/* WARNING: this should be kept in sync with include/xine.h.in */
struct osd_renderer_s {
/*
@@ -201,6 +200,13 @@ struct osd_renderer_s {
int x1, int y1, int width, int height,
uint8_t *palette_map);
+ /*
+ * send the osd to be displayed (unscaled) at given pts (0=now)
+ * the object is not changed. there may be subsequent drawing on it.
+ * overlay is blended at output (screen) resolution.
+ */
+ int (*show_unscaled) (osd_object_t *osd, int64_t vpts );
+
/* private stuff */
pthread_mutex_t osd_mutex;