FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vf_subtitles.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Baptiste Coudurier
3  * Copyright (c) 2011 Stefano Sabatini
4  * Copyright (c) 2012 Clément Bœsch
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * Libass subtitles burning filter.
26  *
27  * @see{http://www.matroska.org/technical/specs/subtitles/ssa.html}
28  */
29 
30 #include <ass/ass.h>
31 
32 #include "config.h"
33 #if CONFIG_SUBTITLES_FILTER
34 # include "libavcodec/avcodec.h"
35 # include "libavformat/avformat.h"
36 #endif
37 #include "libavutil/avstring.h"
38 #include "libavutil/imgutils.h"
39 #include "libavutil/opt.h"
40 #include "libavutil/parseutils.h"
41 #include "drawutils.h"
42 #include "avfilter.h"
43 #include "internal.h"
44 #include "formats.h"
45 #include "video.h"
46 
47 typedef struct {
48  const AVClass *class;
49  ASS_Library *library;
50  ASS_Renderer *renderer;
51  ASS_Track *track;
52  char *filename;
53  char *charenc;
54  char *force_style;
56  uint8_t rgba_map[4];
57  int pix_step[4]; ///< steps per pixel for each plane of the main output
58  int original_w, original_h;
59  int shaping;
61 } AssContext;
62 
63 #define OFFSET(x) offsetof(AssContext, x)
64 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
65 
66 #define COMMON_OPTIONS \
67  {"filename", "set the filename of file to read", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS }, \
68  {"f", "set the filename of file to read", OFFSET(filename), AV_OPT_TYPE_STRING, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS }, \
69  {"original_size", "set the size of the original video (used to scale fonts)", OFFSET(original_w), AV_OPT_TYPE_IMAGE_SIZE, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS }, \
70 
71 /* libass supports a log level ranging from 0 to 7 */
72 static const int ass_libavfilter_log_level_map[] = {
73  [0] = AV_LOG_FATAL, /* MSGL_FATAL */
74  [1] = AV_LOG_ERROR, /* MSGL_ERR */
75  [2] = AV_LOG_WARNING, /* MSGL_WARN */
76  [3] = AV_LOG_WARNING, /* <undefined> */
77  [4] = AV_LOG_INFO, /* MSGL_INFO */
78  [5] = AV_LOG_INFO, /* <undefined> */
79  [6] = AV_LOG_VERBOSE, /* MSGL_V */
80  [7] = AV_LOG_DEBUG, /* MSGL_DBG2 */
81 };
82 
83 static void ass_log(int ass_level, const char *fmt, va_list args, void *ctx)
84 {
85  const int ass_level_clip = av_clip(ass_level, 0,
87  const int level = ass_libavfilter_log_level_map[ass_level_clip];
88 
89  av_vlog(ctx, level, fmt, args);
90  av_log(ctx, level, "\n");
91 }
92 
93 static av_cold int init(AVFilterContext *ctx)
94 {
95  AssContext *ass = ctx->priv;
96 
97  if (!ass->filename) {
98  av_log(ctx, AV_LOG_ERROR, "No filename provided!\n");
99  return AVERROR(EINVAL);
100  }
101 
102  ass->library = ass_library_init();
103  if (!ass->library) {
104  av_log(ctx, AV_LOG_ERROR, "Could not initialize libass.\n");
105  return AVERROR(EINVAL);
106  }
107  ass_set_message_cb(ass->library, ass_log, ctx);
108 
109  ass->renderer = ass_renderer_init(ass->library);
110  if (!ass->renderer) {
111  av_log(ctx, AV_LOG_ERROR, "Could not initialize libass renderer.\n");
112  return AVERROR(EINVAL);
113  }
114 
115  return 0;
116 }
117 
118 static av_cold void uninit(AVFilterContext *ctx)
119 {
120  AssContext *ass = ctx->priv;
121 
122  if (ass->track)
123  ass_free_track(ass->track);
124  if (ass->renderer)
125  ass_renderer_done(ass->renderer);
126  if (ass->library)
127  ass_library_done(ass->library);
128 }
129 
131 {
133 }
134 
135 static int config_input(AVFilterLink *inlink)
136 {
137  AssContext *ass = inlink->dst->priv;
138 
139  ff_draw_init(&ass->draw, inlink->format, 0);
140 
141  ass_set_frame_size (ass->renderer, inlink->w, inlink->h);
142  if (ass->original_w && ass->original_h)
143  ass_set_aspect_ratio(ass->renderer, (double)inlink->w / inlink->h,
144  (double)ass->original_w / ass->original_h);
145  if (ass->shaping != -1)
146  ass_set_shaper(ass->renderer, ass->shaping);
147 
148  return 0;
149 }
150 
151 /* libass stores an RGBA color in the format RRGGBBTT, where TT is the transparency level */
152 #define AR(c) ( (c)>>24)
153 #define AG(c) (((c)>>16)&0xFF)
154 #define AB(c) (((c)>>8) &0xFF)
155 #define AA(c) ((0xFF-(c)) &0xFF)
156 
157 static void overlay_ass_image(AssContext *ass, AVFrame *picref,
158  const ASS_Image *image)
159 {
160  for (; image; image = image->next) {
161  uint8_t rgba_color[] = {AR(image->color), AG(image->color), AB(image->color), AA(image->color)};
163  ff_draw_color(&ass->draw, &color, rgba_color);
164  ff_blend_mask(&ass->draw, &color,
165  picref->data, picref->linesize,
166  picref->width, picref->height,
167  image->bitmap, image->stride, image->w, image->h,
168  3, 0, image->dst_x, image->dst_y);
169  }
170 }
171 
172 static int filter_frame(AVFilterLink *inlink, AVFrame *picref)
173 {
174  AVFilterContext *ctx = inlink->dst;
175  AVFilterLink *outlink = ctx->outputs[0];
176  AssContext *ass = ctx->priv;
177  int detect_change = 0;
178  double time_ms = picref->pts * av_q2d(inlink->time_base) * 1000;
179  ASS_Image *image = ass_render_frame(ass->renderer, ass->track,
180  time_ms, &detect_change);
181 
182  if (detect_change)
183  av_log(ctx, AV_LOG_DEBUG, "Change happened at time ms:%f\n", time_ms);
184 
185  overlay_ass_image(ass, picref, image);
186 
187  return ff_filter_frame(outlink, picref);
188 }
189 
190 static const AVFilterPad ass_inputs[] = {
191  {
192  .name = "default",
193  .type = AVMEDIA_TYPE_VIDEO,
194  .filter_frame = filter_frame,
195  .config_props = config_input,
196  .needs_writable = 1,
197  },
198  { NULL }
199 };
200 
201 static const AVFilterPad ass_outputs[] = {
202  {
203  .name = "default",
204  .type = AVMEDIA_TYPE_VIDEO,
205  },
206  { NULL }
207 };
208 
209 #if CONFIG_ASS_FILTER
210 
211 static const AVOption ass_options[] = {
213  {"shaping", "set shaping engine", OFFSET(shaping), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, FLAGS, "shaping_mode"},
214  {"auto", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = -1}, INT_MIN, INT_MAX, FLAGS, "shaping_mode"},
215  {"simple", "simple shaping", 0, AV_OPT_TYPE_CONST, {.i64 = ASS_SHAPING_SIMPLE}, INT_MIN, INT_MAX, FLAGS, "shaping_mode"},
216  {"complex", "complex shaping", 0, AV_OPT_TYPE_CONST, {.i64 = ASS_SHAPING_COMPLEX}, INT_MIN, INT_MAX, FLAGS, "shaping_mode"},
217  {NULL},
218 };
219 
221 
222 static av_cold int init_ass(AVFilterContext *ctx)
223 {
224  AssContext *ass = ctx->priv;
225  int ret = init(ctx);
226 
227  if (ret < 0)
228  return ret;
229 
230  /* Initialize fonts */
231  ass_set_fonts(ass->renderer, NULL, NULL, 1, NULL, 1);
232 
233  ass->track = ass_read_file(ass->library, ass->filename, NULL);
234  if (!ass->track) {
235  av_log(ctx, AV_LOG_ERROR,
236  "Could not create a libass track when reading file '%s'\n",
237  ass->filename);
238  return AVERROR(EINVAL);
239  }
240  return 0;
241 }
242 
243 AVFilter ff_vf_ass = {
244  .name = "ass",
245  .description = NULL_IF_CONFIG_SMALL("Render ASS subtitles onto input video using the libass library."),
246  .priv_size = sizeof(AssContext),
247  .init = init_ass,
248  .uninit = uninit,
250  .inputs = ass_inputs,
251  .outputs = ass_outputs,
252  .priv_class = &ass_class,
253 };
254 #endif
255 
256 #if CONFIG_SUBTITLES_FILTER
257 
258 static const AVOption subtitles_options[] = {
260  {"charenc", "set input character encoding", OFFSET(charenc), AV_OPT_TYPE_STRING, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS},
261  {"stream_index", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS},
262  {"si", "set stream index", OFFSET(stream_index), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, FLAGS},
263  {"force_style", "force subtitle style", OFFSET(force_style), AV_OPT_TYPE_STRING, {.str = NULL}, CHAR_MIN, CHAR_MAX, FLAGS},
264  {NULL},
265 };
266 
267 static const char * const font_mimetypes[] = {
268  "application/x-truetype-font",
269  "application/vnd.ms-opentype",
270  "application/x-font-ttf",
271  NULL
272 };
273 
274 static int attachment_is_font(AVStream * st)
275 {
276  const AVDictionaryEntry *tag = NULL;
277  int n;
278 
279  tag = av_dict_get(st->metadata, "mimetype", NULL, AV_DICT_MATCH_CASE);
280 
281  if (tag) {
282  for (n = 0; font_mimetypes[n]; n++) {
283  if (av_strcasecmp(font_mimetypes[n], tag->value) == 0)
284  return 1;
285  }
286  }
287  return 0;
288 }
289 
290 AVFILTER_DEFINE_CLASS(subtitles);
291 
292 static av_cold int init_subtitles(AVFilterContext *ctx)
293 {
294  int j, ret, sid;
295  int k = 0;
299  AVCodec *dec = NULL;
300  const AVCodecDescriptor *dec_desc;
301  AVStream *st;
302  AVPacket pkt;
303  AssContext *ass = ctx->priv;
304 
305  /* Init libass */
306  ret = init(ctx);
307  if (ret < 0)
308  return ret;
309  ass->track = ass_new_track(ass->library);
310  if (!ass->track) {
311  av_log(ctx, AV_LOG_ERROR, "Could not create a libass track\n");
312  return AVERROR(EINVAL);
313  }
314 
315  /* Open subtitles file */
316  ret = avformat_open_input(&fmt, ass->filename, NULL, NULL);
317  if (ret < 0) {
318  av_log(ctx, AV_LOG_ERROR, "Unable to open %s\n", ass->filename);
319  goto end;
320  }
321  ret = avformat_find_stream_info(fmt, NULL);
322  if (ret < 0)
323  goto end;
324 
325  /* Locate subtitles stream */
326  if (ass->stream_index < 0)
327  ret = av_find_best_stream(fmt, AVMEDIA_TYPE_SUBTITLE, -1, -1, NULL, 0);
328  else {
329  ret = -1;
330  if (ass->stream_index < fmt->nb_streams) {
331  for (j = 0; j < fmt->nb_streams; j++) {
332  if (fmt->streams[j]->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
333  if (ass->stream_index == k) {
334  ret = j;
335  break;
336  }
337  k++;
338  }
339  }
340  }
341  }
342 
343  if (ret < 0) {
344  av_log(ctx, AV_LOG_ERROR, "Unable to locate subtitle stream in %s\n",
345  ass->filename);
346  goto end;
347  }
348  sid = ret;
349  st = fmt->streams[sid];
350 
351  /* Load attached fonts */
352  for (j = 0; j < fmt->nb_streams; j++) {
353  AVStream *st = fmt->streams[j];
355  attachment_is_font(st)) {
356  const AVDictionaryEntry *tag = NULL;
357  tag = av_dict_get(st->metadata, "filename", NULL,
359 
360  if (tag) {
361  av_log(ctx, AV_LOG_DEBUG, "Loading attached font: %s\n",
362  tag->value);
363  ass_add_font(ass->library, tag->value,
364  st->codec->extradata,
365  st->codec->extradata_size);
366  } else {
367  av_log(ctx, AV_LOG_WARNING,
368  "Font attachment has no filename, ignored.\n");
369  }
370  }
371  }
372 
373  /* Initialize fonts */
374  ass_set_fonts(ass->renderer, NULL, NULL, 1, NULL, 1);
375 
376  /* Open decoder */
377  dec_ctx = st->codec;
378  dec = avcodec_find_decoder(dec_ctx->codec_id);
379  if (!dec) {
380  av_log(ctx, AV_LOG_ERROR, "Failed to find subtitle codec %s\n",
381  avcodec_get_name(dec_ctx->codec_id));
382  return AVERROR(EINVAL);
383  }
384  dec_desc = avcodec_descriptor_get(dec_ctx->codec_id);
385  if (dec_desc && !(dec_desc->props & AV_CODEC_PROP_TEXT_SUB)) {
386  av_log(ctx, AV_LOG_ERROR,
387  "Only text based subtitles are currently supported\n");
388  return AVERROR_PATCHWELCOME;
389  }
390  if (ass->charenc)
391  av_dict_set(&codec_opts, "sub_charenc", ass->charenc, 0);
392  ret = avcodec_open2(dec_ctx, dec, &codec_opts);
393  if (ret < 0)
394  goto end;
395 
396  if (ass->force_style) {
397  char **list = NULL;
398  char *temp = NULL;
399  char *ptr = av_strtok(ass->force_style, ",", &temp);
400  int i = 0;
401  while (ptr) {
402  av_dynarray_add(&list, &i, ptr);
403  if (!list) {
404  ret = AVERROR(ENOMEM);
405  goto end;
406  }
407  ptr = av_strtok(NULL, ",", &temp);
408  }
409  av_dynarray_add(&list, &i, NULL);
410  if (!list) {
411  ret = AVERROR(ENOMEM);
412  goto end;
413  }
414  ass_set_style_overrides(ass->library, list);
415  av_free(list);
416  }
417  /* Decode subtitles and push them into the renderer (libass) */
418  if (dec_ctx->subtitle_header)
419  ass_process_codec_private(ass->track,
420  dec_ctx->subtitle_header,
421  dec_ctx->subtitle_header_size);
422  av_init_packet(&pkt);
423  pkt.data = NULL;
424  pkt.size = 0;
425  while (av_read_frame(fmt, &pkt) >= 0) {
426  int i, got_subtitle;
427  AVSubtitle sub = {0};
428 
429  if (pkt.stream_index == sid) {
430  ret = avcodec_decode_subtitle2(dec_ctx, &sub, &got_subtitle, &pkt);
431  if (ret < 0) {
432  av_log(ctx, AV_LOG_WARNING, "Error decoding: %s (ignored)\n",
433  av_err2str(ret));
434  } else if (got_subtitle) {
435  for (i = 0; i < sub.num_rects; i++) {
436  char *ass_line = sub.rects[i]->ass;
437  if (!ass_line)
438  break;
439  ass_process_data(ass->track, ass_line, strlen(ass_line));
440  }
441  }
442  }
443  av_free_packet(&pkt);
444  avsubtitle_free(&sub);
445  }
446 
447 end:
448  av_dict_free(&codec_opts);
449  if (dec_ctx)
450  avcodec_close(dec_ctx);
451  if (fmt)
452  avformat_close_input(&fmt);
453  return ret;
454 }
455 
456 AVFilter ff_vf_subtitles = {
457  .name = "subtitles",
458  .description = NULL_IF_CONFIG_SMALL("Render text subtitles onto input video using the libass library."),
459  .priv_size = sizeof(AssContext),
460  .init = init_subtitles,
461  .uninit = uninit,
463  .inputs = ass_inputs,
464  .outputs = ass_outputs,
465  .priv_class = &subtitles_class,
466 };
467 #endif
void ff_blend_mask(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, uint8_t *mask, int mask_linesize, int mask_w, int mask_h, int l2depth, unsigned endianness, int x0, int y0)
Blend an alpha mask with an uniform color.
Definition: drawutils.c:453
static void overlay_ass_image(AssContext *ass, AVFrame *picref, const ASS_Image *image)
Definition: vf_subtitles.c:157
AVFilterFormats * ff_draw_supported_pixel_formats(unsigned flags)
Return the list of pixel formats supported by the draw functions.
Definition: drawutils.c:525
#define NULL
Definition: coverity.c:32
static int config_input(AVFilterLink *inlink)
Definition: vf_subtitles.c:135
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:280
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
FFDrawContext draw
Definition: vf_subtitles.c:60
AVOption.
Definition: opt.h:255
static int filter_frame(AVFilterLink *inlink, AVFrame *picref)
Definition: vf_subtitles.c:172
const char * fmt
Definition: avisynth_c.h:632
misc image utilities
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:248
Main libavfilter public API header.
ASS_Track * track
Definition: vf_subtitles.c:51
int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
Definition: utils.c:402
else temp
Definition: vf_mcdeint.c:257
static const AVClass ass_class
Definition: assenc.c:230
int size
Definition: avcodec.h:1163
#define AV_CODEC_PROP_TEXT_SUB
Subtitle codec is text based.
Definition: avcodec.h:620
unsigned num_rects
Definition: avcodec.h:3511
#define FF_ARRAY_ELEMS(a)
static AVPacket pkt
int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, AVPacket *avpkt)
Decode a subtitle message.
Definition: utils.c:2730
AVCodec.
Definition: avcodec.h:3181
static void ass_log(int ass_level, const char *fmt, va_list args, void *ctx)
Definition: vf_subtitles.c:83
AVSubtitleRect ** rects
Definition: avcodec.h:3512
Format I/O context.
Definition: avformat.h:1272
const char * name
Pad name.
Definition: internal.h:67
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1145
static int query_formats(AVFilterContext *ctx)
Definition: vf_subtitles.c:130
uint8_t
#define av_cold
Definition: attributes.h:74
ASS_Library * library
Definition: vf_subtitles.c:49
AVOptions.
int subtitle_header_size
Definition: avcodec.h:2958
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
Definition: log.c:94
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:67
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:257
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1355
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1340
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:80
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:39
uint8_t * data
Definition: avcodec.h:1162
uint32_t tag
Definition: movenc.c:1333
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
#define av_log(a,...)
A filter pad used for either input or output.
Definition: internal.h:61
int av_find_best_stream(AVFormatContext *ic, enum AVMediaType type, int wanted_stream_nb, int related_stream, AVCodec **decoder_ret, int flags)
Find the "best" stream in the file.
Definition: utils.c:3496
int avcodec_close(AVCodecContext *avctx)
Close a given AVCodecContext and free all the data associated with it (but not the AVCodecContext its...
Definition: utils.c:2843
#define AA(c)
Definition: vf_subtitles.c:155
int width
width and height of the video frame
Definition: frame.h:220
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define AV_DICT_MATCH_CASE
Only get an entry with exact-case key match.
Definition: dict.h:71
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:542
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
void * priv
private data for use by the filter
Definition: avfilter.h:654
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:199
void ff_draw_color(FFDrawContext *draw, FFDrawColor *color, const uint8_t rgba[4])
Prepare a color.
Definition: drawutils.c:198
void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem)
Add an element to a dynamic array.
Definition: mem.c:322
Libavcodec external API header.
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
Definition: codec_desc.c:2891
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
int props
Codec properties, a combination of AV_CODEC_PROP_* flags.
Definition: avcodec.h:576
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1328
int stream_index
Definition: vf_subtitles.c:55
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:213
ret
Definition: avfilter.c:974
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: error.h:119
int n
Definition: avisynth_c.h:547
AVDictionary * metadata
Definition: avformat.h:916
Opaque data information usually sparse.
Definition: avutil.h:198
const char * avcodec_get_name(enum AVCodecID id)
Get the name of a codec.
Definition: utils.c:2970
Stream structure.
Definition: avformat.h:842
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
enum AVMediaType codec_type
Definition: avcodec.h:1249
misc drawing utilities
#define AG(c)
Definition: vf_subtitles.c:153
ASS_Renderer * renderer
Definition: vf_subtitles.c:50
enum AVCodecID codec_id
Definition: avcodec.h:1258
static const int ass_libavfilter_log_level_map[]
Definition: vf_subtitles.c:72
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
main external API structure.
Definition: avcodec.h:1241
AVCodec * avcodec_find_decoder(enum AVCodecID id)
Find a registered decoder with a matching codec ID.
Definition: utils.c:2951
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
Definition: utils.c:2824
int extradata_size
Definition: avcodec.h:1356
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:69
Describe the class of an AVClass context structure.
Definition: log.h:67
Filter definition.
Definition: avfilter.h:470
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:239
char * filename
Definition: vf_subtitles.c:52
void av_vlog(void *avcl, int level, const char *fmt, va_list vl)
Send the specified message to the log if the level is less than or equal to the current av_log_level...
Definition: log.c:370
const char * name
Filter name.
Definition: avfilter.h:474
int ff_draw_init(FFDrawContext *draw, enum AVPixelFormat format, unsigned flags)
Init a draw context.
Definition: drawutils.c:156
int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictionary **options)
Initialize the AVCodecContext to use the given AVCodec.
Definition: utils.c:1330
misc parsing utilities
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:648
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition: utils.c:1475
#define AB(c)
Definition: vf_subtitles.c:154
This struct describes the properties of a single codec described by an AVCodecID. ...
Definition: avcodec.h:560
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
uint8_t level
Definition: svq3.c:150
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok()...
Definition: avstring.c:184
static av_cold int init(AVFilterContext *ctx)
Definition: vf_subtitles.c:93
Main libavformat public API header.
AVDictionary * codec_opts
Definition: cmdutils.c:68
#define OFFSET(x)
Definition: vf_subtitles.c:63
int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
Read packets of a media file to get stream information.
Definition: utils.c:3024
#define FLAGS
Definition: vf_subtitles.c:64
static AVCodecContext * dec_ctx
static const AVFilterPad ass_inputs[]
Definition: vf_subtitles.c:190
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:49
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Definition: utils.c:3644
#define COMMON_OPTIONS
Definition: vf_subtitles.c:66
#define av_free(p)
char * value
Definition: dict.h:88
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_subtitles.c:118
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:313
char * force_style
Definition: vf_subtitles.c:54
char * ass
0 terminated ASS/SSA compatible event line.
Definition: avcodec.h:3502
An instance of a filter.
Definition: avfilter.h:633
int height
Definition: frame.h:220
#define AV_LOG_FATAL
Something went wrong and recovery is not possible.
Definition: log.h:170
char * charenc
Definition: vf_subtitles.c:53
int stream_index
Definition: avcodec.h:1164
internal API functions
This structure stores compressed data.
Definition: avcodec.h:1139
static const AVFilterPad ass_outputs[]
Definition: vf_subtitles.c:201
int original_w
Definition: vf_subtitles.c:58
#define AR(c)
Definition: vf_subtitles.c:152
uint8_t * subtitle_header
Header containing style information for text subtitles.
Definition: avcodec.h:2957
int original_h
Definition: vf_subtitles.c:58