summaryrefslogtreecommitdiff
path: root/src/xine-engine/osd.h
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-03-14 13:57:15 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-03-14 13:57:15 +0000
commiteb0240ff0f72d78e583a40292d3ba0fe7efa22ab (patch)
tree67a4db2624f10f73d80195bdfd26e77b95c1f3ca /src/xine-engine/osd.h
parent6e0f8db43be862f7612e6132db0371a875ffd6dc (diff)
downloadxine-lib-eb0240ff0f72d78e583a40292d3ba0fe7efa22ab.tar.gz
xine-lib-eb0240ff0f72d78e583a40292d3ba0fe7efa22ab.tar.bz2
- make libsputext work again
- update osd & video_overlay to use 64-bits pts CVS patchset: 1569 CVS date: 2002/03/14 13:57:15
Diffstat (limited to 'src/xine-engine/osd.h')
-rw-r--r--src/xine-engine/osd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/osd.h b/src/xine-engine/osd.h
index 37205fdbc..486b176b8 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.8 2002/03/14 04:31:49 miguelfreitas Exp $
+ * $Id: osd.h,v 1.9 2002/03/14 13:57:15 miguelfreitas Exp $
*/
#ifndef HAVE_OSD_H
@@ -56,13 +56,13 @@ struct osd_renderer_s {
* send the osd to be displayed at given pts (0=now)
* the object is not changed. there may be subsequent drawing on it.
*/
- int (*show) (osd_object_t *osd, uint32_t vpts );
+ int (*show) (osd_object_t *osd, int64_t vpts );
/*
* send event to hide osd at given pts (0=now)
* the object is not changed. there may be subsequent drawing on it.
*/
- int (*hide) (osd_object_t *osd, uint32_t vpts );
+ int (*hide) (osd_object_t *osd, int64_t vpts );
/*
* Bresenham line implementation on osd object