mirror of
https://github.com/mpv-player/mpv
synced 2025-03-06 22:28:01 +00:00
The previous commit made libass the default OSD renderer. This commit removes the disabled freetype renderer completely. The commits were done separately to make rolling back easier, because using libass for OSD rendering is a risky choice. Also remove freetype/fontconfig/fribidi code. This is all done by libass now. If mplayer is compiled without libass, no OSD is displayed.
44 lines
679 B
C
44 lines
679 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_teletext(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)
|
|
{
|
|
}
|