summaryrefslogtreecommitdiffstats
path: root/sub/osd_dummy.c
blob: d869fe16c8da4eb0ba1e0a2a403a0614f519bd1a (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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "config.h"
#include "talloc.h"
#include "sub.h"

void vo_update_text_osd(struct osd_state *osd, mp_osd_obj_t *obj)
{
}

void vo_update_text_progbar(struct osd_state *osd, mp_osd_obj_t *obj)
{
}

void vo_update_text_sub(struct osd_state *osd, mp_osd_obj_t *obj)
{
}

void osd_init_backend(struct osd_state *osd)
{
}

void osd_destroy_backend(struct osd_state *osd)
{
}

void osd_font_invalidate(void)
{
}

void osd_font_load(struct osd_state *osd)
{
}

void osd_get_function_sym(char *buffer, size_t buffer_size, int osd_function)
{
}