ass.h 5.18 KB
Newer Older
1
/*
2
 * SSA/ASS common functions
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * Copyright (c) 2010  Aurelien Jacobs <aurel@gnuage.org>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#ifndef AVCODEC_ASS_H
#define AVCODEC_ASS_H

#include "avcodec.h"
26
#include "libavutil/bprint.h"
27

28 29 30
#define ASS_DEFAULT_PLAYRESX 384
#define ASS_DEFAULT_PLAYRESY 288

Aurelien Jacobs's avatar
Aurelien Jacobs committed
31
/**
32
 * @name Default values for ASS style
Aurelien Jacobs's avatar
Aurelien Jacobs committed
33 34 35 36 37 38 39 40 41 42
 * @{
 */
#define ASS_DEFAULT_FONT        "Arial"
#define ASS_DEFAULT_FONT_SIZE   16
#define ASS_DEFAULT_COLOR       0xffffff
#define ASS_DEFAULT_BACK_COLOR  0
#define ASS_DEFAULT_BOLD        0
#define ASS_DEFAULT_ITALIC      0
#define ASS_DEFAULT_UNDERLINE   0
#define ASS_DEFAULT_ALIGNMENT   2
43
#define ASS_DEFAULT_BORDERSTYLE 1
Aurelien Jacobs's avatar
Aurelien Jacobs committed
44 45
/** @} */

46 47 48 49
typedef struct FFASSDecoderContext {
    int readorder;
} FFASSDecoderContext;

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
/**
 * Generate a suitable AVCodecContext.subtitle_header for SUBTITLE_ASS.
 * Can specify all fields explicitly
 *
 * @param avctx pointer to the AVCodecContext
 * @param play_res_x subtitle frame width
 * @param play_res_y subtitle frame height
 * @param font name of the default font face to use
 * @param font_size default font size to use
 * @param primary_color default text color to use (ABGR)
 * @param secondary_color default secondary text color to use (ABGR)
 * @param outline_color default outline color to use (ABGR)
 * @param back_color default background color to use (ABGR)
 * @param bold 1 for bold text, 0 for normal text
 * @param italic 1 for italic text, 0 for normal text
 * @param underline 1 for underline text, 0 for normal text
 * @param border_style 1 for outline, 3 for opaque box
 * @param alignment position of the text (left, center, top...), defined after
 *                  the layout of the numpad (1-3 sub, 4-6 mid, 7-9 top)
 * @return >= 0 on success otherwise an error code <0
 */
int ff_ass_subtitle_header_full(AVCodecContext *avctx,
                                int play_res_x, int play_res_y,
                                const char *font, int font_size,
                                int primary_color, int secondary_color,
                                int outline_color, int back_color,
                                int bold, int italic, int underline,
                                int border_style, int alignment);
Aurelien Jacobs's avatar
Aurelien Jacobs committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
/**
 * Generate a suitable AVCodecContext.subtitle_header for SUBTITLE_ASS.
 *
 * @param avctx pointer to the AVCodecContext
 * @param font name of the default font face to use
 * @param font_size default font size to use
 * @param color default text color to use (ABGR)
 * @param back_color default background color to use (ABGR)
 * @param bold 1 for bold text, 0 for normal text
 * @param italic 1 for italic text, 0 for normal text
 * @param underline 1 for underline text, 0 for normal text
 * @param alignment position of the text (left, center, top...), defined after
 *                  the layout of the numpad (1-3 sub, 4-6 mid, 7-9 top)
 * @return >= 0 on success otherwise an error code <0
 */
int ff_ass_subtitle_header(AVCodecContext *avctx,
                           const char *font, int font_size,
                           int color, int back_color,
                           int bold, int italic, int underline,
97
                           int border_style, int alignment);
Aurelien Jacobs's avatar
Aurelien Jacobs committed
98 99 100 101 102 103 104 105 106 107

/**
 * Generate a suitable AVCodecContext.subtitle_header for SUBTITLE_ASS
 * with default style.
 *
 * @param avctx pointer to the AVCodecContext
 * @return >= 0 on success otherwise an error code <0
 */
int ff_ass_subtitle_header_default(AVCodecContext *avctx);

108
/**
109
 * Craft an ASS dialog string.
110
 */
111 112
char *ff_ass_get_dialog(int readorder, int layer, const char *style,
                        const char *speaker, const char *text);
113

114
/**
115
 * Add an ASS dialog to a subtitle.
116
 */
117 118 119
int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
                    int readorder, int layer, const char *style,
                    const char *speaker);
120

121
/**
122 123
 * Helper to flush a text subtitles decoder making use of the
 * FFASSDecoderContext.
124
 */
125
void ff_ass_decoder_flush(AVCodecContext *avctx);
126

127 128 129 130 131 132 133 134 135 136 137 138
/**
 * Escape a text subtitle using ASS syntax into an AVBPrint buffer.
 * Newline characters will be escaped to \N.
 *
 * @param buf pointer to an initialized AVBPrint buffer
 * @param p source text
 * @param size size of the source text
 * @param linebreaks additional newline chars, which will be escaped to \N
 * @param keep_ass_markup braces and backslash will not be escaped if set
 */
void ff_ass_bprint_text_event(AVBPrint *buf, const char *p, int size,
                             const char *linebreaks, int keep_ass_markup);
139
#endif /* AVCODEC_ASS_H */