summaryrefslogtreecommitdiffstats
path: root/ass_mp.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-26 19:40:52 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2011-01-26 20:39:05 +0200
commitc9026cb3210205b07e2e068467a18ee40f9259a3 (patch)
treeea9657ad306899c6fbedae4abd088e9ac44fa61f /ass_mp.h
parentebd2058d033416274f2e4b40f5ad907d86f8aad5 (diff)
downloadmpv-c9026cb3210205b07e2e068467a18ee40f9259a3.tar.bz2
mpv-c9026cb3210205b07e2e068467a18ee40f9259a3.tar.xz
sub/OSD: move some related files to sub/
Diffstat (limited to 'ass_mp.h')
-rw-r--r--ass_mp.h82
1 files changed, 0 insertions, 82 deletions
diff --git a/ass_mp.h b/ass_mp.h
deleted file mode 100644
index 965b063403..0000000000
--- a/ass_mp.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
- *
- * This file is part of MPlayer.
- *
- * MPlayer is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * MPlayer is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with libass; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef MPLAYER_ASS_MP_H
-#define MPLAYER_ASS_MP_H
-
-#include <stdint.h>
-#include <stdbool.h>
-
-#include "config.h"
-#include "subreader.h"
-
-#ifdef CONFIG_ASS
-#include <ass/ass.h>
-#include <ass/ass_types.h>
-
-extern ASS_Library *ass_library;
-extern float ass_font_scale;
-extern float ass_line_spacing;
-extern int ass_top_margin;
-extern int ass_bottom_margin;
-extern int use_embedded_fonts;
-extern char **ass_force_style_list;
-extern int ass_use_margins;
-extern char *ass_color;
-extern char *ass_border_color;
-extern char *ass_styles_file;
-extern int ass_hinting;
-
-ASS_Track *mp_ass_default_track(ASS_Library *library);
-ASS_Track *mp_ass_read_subdata(ASS_Library *library, sub_data *subdata,
- double fps);
-ASS_Track *mp_ass_read_stream(ASS_Library *library, const char *fname,
- char *charset);
-
-void mp_ass_configure(ASS_Renderer *priv, int w, int h, bool unscaled);
-void mp_ass_configure_fonts(ASS_Renderer *priv);
-ASS_Library *mp_ass_init(void);
-
-extern int ass_force_reload;
-ASS_Image *mp_ass_render_frame(ASS_Renderer *priv, ASS_Track *track,
- long long now, int *detect_change);
-
-#else /* CONFIG_ASS */
-
-/* Needed for EOSD code using this type to compile */
-
-typedef struct ass_image {
- int w, h;
- int stride;
- unsigned char *bitmap;
- uint32_t color;
- int dst_x, dst_y;
- struct ass_image *next;
-} ASS_Image;
-
-#endif
-
-typedef struct {
- ASS_Image *imgs;
- int changed;
-} mp_eosd_images_t;
-
-
-#endif /* MPLAYER_ASS_MP_H */