mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
ebaaa41f2a
Teletext requires special OSD support. Because I can't even test teletext, I can't restore support for it. Since teletext can be considered ancient and obscure, and since it doesn't make sense to keep the remaining teletext code without being able to use it, I'm removing it.
40 lines
603 B
C
40 lines
603 B
C
#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)
|
|
{
|
|
}
|