0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
mpv/sub/osd_dummy.c

34 lines
672 B
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "mpv_talloc.h"
#include "osd.h"
const char *const osd_ass_0 = "";
const char *const osd_ass_1 = "";
void osd_init_backend(struct osd_state *osd)
{
}
void osd_destroy_backend(struct osd_state *osd)
{
}
void osd_get_function_sym(char *buffer, size_t buffer_size, int osd_function)
{
}
void osd_object_get_bitmaps(struct osd_state *osd, struct osd_object *obj,
struct sub_bitmaps *out_imgs)
{
*out_imgs = (struct sub_bitmaps) {0};
}
2016-03-16 13:31:48 +01:00
void osd_set_external(struct osd_state *osd, void *id, int res_x, int res_y,
char *text)
{
}