summaryrefslogtreecommitdiffstats
path: root/sub/img_convert.h
diff options
context:
space:
mode:
Diffstat (limited to 'sub/img_convert.h')
-rw-r--r--sub/img_convert.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/sub/img_convert.h b/sub/img_convert.h
new file mode 100644
index 0000000000..c40a8de2e4
--- /dev/null
+++ b/sub/img_convert.h
@@ -0,0 +1,16 @@
+#ifndef MPLAYER_SUB_IMG_CONVERT_H
+#define MPLAYER_SUB_IMG_CONVERT_H
+
+#include <stdbool.h>
+
+struct osd_conv_cache;
+struct sub_bitmaps;
+
+struct osd_conv_cache *osd_conv_cache_new(void);
+
+// These functions convert from one OSD format to another. On success, they copy
+// the converted image data into c, and change imgs to point to the data.
+bool osd_conv_old_p_to_old(struct osd_conv_cache *c, struct sub_bitmaps *imgs);
+bool osd_conv_ass_to_old_p(struct osd_conv_cache *c, struct sub_bitmaps *imgs);
+
+#endif