diff options
Diffstat (limited to 'sub')
-rw-r--r-- | sub/ass_mp.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sub/ass_mp.h b/sub/ass_mp.h index b4cae24ddc..20f0ebe9bd 100644 --- a/sub/ass_mp.h +++ b/sub/ass_mp.h @@ -23,7 +23,8 @@ #include <stdint.h> #include <stdbool.h> -#include "config.h" +#include <ass/ass.h> +#include <ass/ass_types.h> // This is probably arbitrary. // sd_lavc_conv might indirectly still assume this PlayResY, though. @@ -35,10 +36,6 @@ // m_color argument #define MP_ASS_COLOR(c) MP_ASS_RGBA((c).r, (c).g, (c).b, (c).a) -#if HAVE_LIBASS -#include <ass/ass.h> -#include <ass/ass_types.h> - struct MPOpts; struct mpv_global; struct mp_osd_res; @@ -57,5 +54,4 @@ struct sub_bitmaps; void mp_ass_render_frame(ASS_Renderer *renderer, ASS_Track *track, double time, struct sub_bitmaps *res); -#endif /* HAVE_LIBASS */ #endif /* MPLAYER_ASS_MP_H */ |