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"
|
2017-01-26 15:34:31 +00:00
|
|
|
#include "osd_state.h"
|
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,
|
2016-07-03 16:33:28 +00:00
|
|
|
int format, 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)
|
|
|
|
{
|
|
|
|
}
|
2017-01-26 17:24:53 +00:00
|
|
|
|
|
|
|
void osd_get_text_size(struct osd_state *osd, int *out_screen_h, int *out_font_h)
|
|
|
|
{
|
|
|
|
*out_screen_h = 0;
|
|
|
|
*out_font_h = 0;
|
|
|
|
}
|