summaryrefslogtreecommitdiffstats
path: root/libass/mputils.h
diff options
context:
space:
mode:
Diffstat (limited to 'libass/mputils.h')
-rw-r--r--libass/mputils.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/libass/mputils.h b/libass/mputils.h
deleted file mode 100644
index 199f74b..0000000
--- a/libass/mputils.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef __MPUTILS_H__
-#define __MPUTILS_H__
-
-#define MSGL_FATAL 0
-#define MSGL_ERR 1
-#define MSGL_WARN 2
-#define MSGL_INFO 4
-#define MSGL_V 6
-#define MSGL_DBG2 7
-
-#define FFMAX(a,b) ((a) > (b) ? (a) : (b))
-#define FFMIN(a,b) ((a) > (b) ? (b) : (a))
-
-#include "help_mp.h"
-
-unsigned ass_utf8_get_char(char **str);
-void ass_msg(int lvl, char *fmt, ...);
-void ass_gauss_blur(unsigned char *buffer, unsigned short *tmp2,
- int width, int height, int stride, int *m2,
- int r, int mwidth);
-void *ass_guess_buffer_cp(unsigned char *buffer, int buflen,
- char *preferred_language, char *fallback);
-
-#endif