summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2010-01-26 11:38:42 +0000
committerphintuka <phintuka>2010-01-26 11:38:42 +0000
commit013cbe2bf4da381fb1b8a3f7dd28ab25ea67e028 (patch)
treeabe0238820aa71777773e08d4f62d44a8c7d54c0
parentb74a03977264086275b125a88525b93f1d52de1c (diff)
downloadxineliboutput-013cbe2bf4da381fb1b8a3f7dd28ab25ea67e028.tar.gz
xineliboutput-013cbe2bf4da381fb1b8a3f7dd28ab25ea67e028.tar.bz2
Wire vo_lastpts
-rw-r--r--xine_frontend.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/xine_frontend.c b/xine_frontend.c
index eaa88d3a..6f3deb7c 100644
--- a/xine_frontend.c
+++ b/xine_frontend.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_frontend.c,v 1.109 2010-01-04 07:58:40 phintuka Exp $
+ * $Id: xine_frontend.c,v 1.110 2010-01-26 11:38:42 phintuka Exp $
*
*/
@@ -36,6 +36,7 @@
#include "xine/vo_post.h"
#include "xine/vo_osdscaler.h"
#include "xine/vo_osdreorder.h"
+#include "xine/vo_lastpts.h"
#undef MIN
#define MIN(a,b) ( (a) < (b) ? (a) : (b))
@@ -56,6 +57,12 @@ static void intercept_video_driver(xine_video_port_t *video_port)
LOGMSG("wire_video_driver() for osdreorder failed");
osdreorder->dispose(osdreorder);
}
+
+ vo_driver_t *lastpts = vo_lastpts_init();
+ if (! wire_video_driver(video_port, lastpts)) {
+ LOGMSG("wire_video_driver() for vo_lastpts failed");
+ lastpts->dispose(lastpts);
+ }
}