summaryrefslogtreecommitdiff
path: root/src/xine-engine/osd.c
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.c
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.c')
-rw-r--r--src/xine-engine/osd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xine-engine/osd.c b/src/xine-engine/osd.c
index 7944907c8..69c06bbff 100644
--- a/src/xine-engine/osd.c
+++ b/src/xine-engine/osd.c
@@ -140,7 +140,7 @@ static osd_object_t *osd_new_object (osd_renderer_t *this, int width, int height
* send the osd to be displayed at given pts (0=now)
* the object is not changed. there may be subsequent drawing on it.
*/
-static int osd_show (osd_object_t *osd, uint32_t vpts ) {
+static int osd_show (osd_object_t *osd, int64_t vpts ) {
osd_renderer_t *this = osd->renderer;
rle_elem_t rle, *rle_p=0;
@@ -148,7 +148,7 @@ static int osd_show (osd_object_t *osd, uint32_t vpts ) {
uint8_t *c;
#ifdef LOG_DEBUG
- printf("osd_show %p vpts=%d\n", osd, vpts);
+ printf("osd_show %p vpts=%lld\n", osd, vpts);
#endif
if( osd->handle < 0 ) {
@@ -230,12 +230,12 @@ static int osd_show (osd_object_t *osd, uint32_t vpts ) {
* send event to hide osd at given pts (0=now)
* the object is not changed. there may be subsequent drawing on it.
*/
-static int osd_hide (osd_object_t *osd, uint32_t vpts) {
+static int osd_hide (osd_object_t *osd, int64_t vpts) {
osd_renderer_t *this = osd->renderer;
#ifdef LOG_DEBUG
- printf("osd_hide %p vpts=%d\n",osd, vpts);
+ printf("osd_hide %p vpts=%lld\n",osd, vpts);
#endif
if( osd->handle < 0 )