summaryrefslogtreecommitdiffstats
path: root/libass/mputils.h
diff options
context:
space:
mode:
authorGrigori Goronzy <greg@blackbox>2009-06-27 06:31:45 +0200
committerGrigori Goronzy <greg@blackbox>2009-06-27 06:46:20 +0200
commit4c1f9e93addaa511f96908fe502e8d5709ed7500 (patch)
tree8b26aa78db213efd4fd7dfdd8ea298e219bf7f22 /libass/mputils.h
parent917e02edda4392b465ffa179628a5032ff969900 (diff)
downloadlibass-4c1f9e93addaa511f96908fe502e8d5709ed7500.tar.bz2
libass-4c1f9e93addaa511f96908fe502e8d5709ed7500.tar.xz
Incorporate mputils.c into ass_utils.c
Move helper functions originating from MPlayer into ass_utils.c. Remove some debugging code that is #if 0'ed for ages now. Delete mputils.c and mputils.h and remove them from the build system.
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 199f74be..00000000
--- 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