blob: 00d9778fccdf62eefedef02469dd8fde1677609a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/*
* vo_lastpts.c:
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: vo_lastpts.c,v 1.3 2011-02-13 14:39:41 phintuka Exp $
*
*/
#include <stdlib.h>
#include <xine/xine_internal.h>
#include <xine/video_out.h>
#include <xine/metronom.h>
#include "xvdr_metronom.h"
#include "vo_hook.h"
/*
* lastpts_hook_t
*/
typedef struct {
vo_driver_hook_t h;
xine_stream_t *prev_stream;
metronom_t *xvdr_metronom;
} lastpts_hook_t;
/*
* interface
*/
/*
* override display_frame()
*/
static void lastpts_display_frame(vo_driver_t *self, vo_frame_t *vo_img)
{
lastpts_hook_t *this = (lastpts_hook_t*)self;
#if 0
if (vo_img->stream) {
vo_img->stream->metronom->set_option(vo_img->stream->metronom, XVDR_METRONOM_LAST_VO_PTS, vo_img->pts);
}
#else
/* detect intercepted metronom with XVDR_* option support.
* This prevents flooding log with "unknown option in set_option" messages
*/
if (vo_img->stream != this->prev_stream && vo_img->stream) {
this->prev_stream = vo_img->stream;
if (vo_img->stream->metronom->get_option(vo_img->stream->metronom, XVDR_METRONOM_ID) == XVDR_METRONOM_ID) {
this->xvdr_metronom = vo_img->stream->metronom;
}
}
if (this->xvdr_metronom) {
this->xvdr_metronom->set_option(this->xvdr_metronom, XVDR_METRONOM_LAST_VO_PTS, vo_img->pts);
}
#endif
this->h.orig_driver->display_frame(this->h.orig_driver, vo_img);
}
/*
* init()
*/
vo_driver_t *vo_lastpts_init(void)
{
lastpts_hook_t *this = calloc(1, sizeof(lastpts_hook_t));
this->h.vo.display_frame = lastpts_display_frame;
return &this->h.vo;
}
|