2012-07-28 20:00:31 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
2016-01-11 18:03:40 +00:00
|
|
|
#include "mpv_talloc.h"
|
2013-11-24 11:58:06 +00:00
|
|
|
#include "osd.h"
|
2012-07-28 20:00:31 +00:00
|
|
|
|
2014-10-10 11:44:08 +00:00
|
|
|
const char *const osd_ass_0 = "";
|
|
|
|
const char *const osd_ass_1 = "";
|
2014-09-17 22:49:55 +00:00
|
|
|
|
2012-07-28 20:00:31 +00:00
|
|
|
void osd_init_backend(struct osd_state *osd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void osd_destroy_backend(struct osd_state *osd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-09-28 19:38:52 +00:00
|
|
|
void osd_get_function_sym(char *buffer, size_t buffer_size, int osd_function)
|
2012-07-28 20:00:31 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-09-28 19:38:52 +00:00
|
|
|
void osd_object_get_bitmaps(struct osd_state *osd, struct osd_object *obj,
|
|
|
|
struct sub_bitmaps *out_imgs)
|
2012-07-28 20:00:31 +00:00
|
|
|
{
|
2012-09-28 19:38:52 +00:00
|
|
|
*out_imgs = (struct sub_bitmaps) {0};
|
2012-07-28 20:00:31 +00:00
|
|
|
}
|
2016-03-08 20:42:08 +00:00
|
|
|
|
2016-03-16 12:31:48 +00:00
|
|
|
void osd_set_external(struct osd_state *osd, void *id, int res_x, int res_y,
|
2016-03-08 20:42:08 +00:00
|
|
|
char *text)
|
|
|
|
{
|
|
|
|
}
|