FFmpeg
textdec.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012 Clément Bœsch
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file
23  * Raw subtitles decoder
24  */
25 
26 #include "config_components.h"
27 
28 #include "avcodec.h"
29 #include "ass.h"
30 #include "codec_internal.h"
31 #include "libavutil/bprint.h"
32 #include "libavutil/opt.h"
33 
34 typedef struct {
35  AVClass *class;
36  const char *linebreaks;
38  int readorder;
39 } TextContext;
40 
41 #define OFFSET(x) offsetof(TextContext, x)
42 #define SD AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM
43 static const AVOption options[] = {
44  { "keep_ass_markup", "Set if ASS tags must be escaped", OFFSET(keep_ass_markup), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, .flags=SD },
45  { NULL }
46 };
47 
49  int *got_sub_ptr, const AVPacket *avpkt)
50 {
51  int ret = 0;
52  AVBPrint buf;
53  const char *ptr = avpkt->data;
54  TextContext *text = avctx->priv_data;
55 
57  if (ptr && avpkt->size > 0 && *ptr) {
58  ff_ass_bprint_text_event(&buf, ptr, avpkt->size, text->linebreaks, text->keep_ass_markup);
59  ret = ff_ass_add_rect(sub, buf.str, text->readorder++, 0, NULL, NULL);
60  }
61  av_bprint_finalize(&buf, NULL);
62  if (ret < 0)
63  return ret;
64  *got_sub_ptr = sub->num_rects > 0;
65  return avpkt->size;
66 }
67 
68 static void text_flush(AVCodecContext *avctx)
69 {
70  TextContext *text = avctx->priv_data;
71  if (!(avctx->flags2 & AV_CODEC_FLAG2_RO_FLUSH_NOOP))
72  text->readorder = 0;
73 }
74 
76  .class_name = "text/vplayer/stl/pjs/subviewer1 decoder",
77  .item_name = av_default_item_name,
78  .option = options,
79  .version = LIBAVUTIL_VERSION_INT,
80 };
81 
82 #if CONFIG_TEXT_DECODER
83 const FFCodec ff_text_decoder = {
84  .p.name = "text",
85  CODEC_LONG_NAME("Raw text subtitle"),
86  .priv_data_size = sizeof(TextContext),
87  .p.type = AVMEDIA_TYPE_SUBTITLE,
88  .p.id = AV_CODEC_ID_TEXT,
91  .p.priv_class = &textsub_decoder_class,
92  .flush = text_flush,
93 };
94 #endif
95 
96 #if CONFIG_VPLAYER_DECODER || CONFIG_PJS_DECODER || CONFIG_SUBVIEWER1_DECODER || CONFIG_STL_DECODER
97 
98 static int linebreak_init(AVCodecContext *avctx)
99 {
100  TextContext *text = avctx->priv_data;
101  text->linebreaks = "|";
102  return ff_ass_subtitle_header_default(avctx);
103 }
104 
105 #if CONFIG_VPLAYER_DECODER
106 const FFCodec ff_vplayer_decoder = {
107  .p.name = "vplayer",
108  CODEC_LONG_NAME("VPlayer subtitle"),
109  .priv_data_size = sizeof(TextContext),
110  .p.type = AVMEDIA_TYPE_SUBTITLE,
111  .p.id = AV_CODEC_ID_VPLAYER,
113  .init = linebreak_init,
114  .p.priv_class = &textsub_decoder_class,
115  .flush = text_flush,
116 };
117 #endif
118 
119 #if CONFIG_STL_DECODER
120 const FFCodec ff_stl_decoder = {
121  .p.name = "stl",
122  CODEC_LONG_NAME("Spruce subtitle format"),
123  .priv_data_size = sizeof(TextContext),
124  .p.type = AVMEDIA_TYPE_SUBTITLE,
125  .p.id = AV_CODEC_ID_STL,
127  .init = linebreak_init,
128  .p.priv_class = &textsub_decoder_class,
129  .flush = text_flush,
130 };
131 #endif
132 
133 #if CONFIG_PJS_DECODER
134 const FFCodec ff_pjs_decoder = {
135  .p.name = "pjs",
136  CODEC_LONG_NAME("PJS subtitle"),
137  .priv_data_size = sizeof(TextContext),
138  .p.type = AVMEDIA_TYPE_SUBTITLE,
139  .p.id = AV_CODEC_ID_PJS,
141  .init = linebreak_init,
142  .p.priv_class = &textsub_decoder_class,
143  .flush = text_flush,
144 };
145 #endif
146 
147 #if CONFIG_SUBVIEWER1_DECODER
149  .p.name = "subviewer1",
150  CODEC_LONG_NAME("SubViewer1 subtitle"),
151  .priv_data_size = sizeof(TextContext),
152  .p.type = AVMEDIA_TYPE_SUBTITLE,
153  .p.id = AV_CODEC_ID_SUBVIEWER1,
155  .init = linebreak_init,
156  .p.priv_class = &textsub_decoder_class,
157  .flush = text_flush,
158 };
159 #endif
160 
161 #endif /* text subtitles with '|' line break */
AVSubtitle
Definition: avcodec.h:2227
AVMEDIA_TYPE_SUBTITLE
@ AVMEDIA_TYPE_SUBTITLE
Definition: avutil.h:204
AV_BPRINT_SIZE_UNLIMITED
#define AV_BPRINT_SIZE_UNLIMITED
opt.h
ff_ass_subtitle_header_default
int ff_ass_subtitle_header_default(AVCodecContext *avctx)
Generate a suitable AVCodecContext.subtitle_header for SUBTITLE_ASS with default style.
Definition: ass.c:98
TextContext::readorder
int readorder
Definition: textdec.c:38
av_bprint_init
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
AVSubtitle::num_rects
unsigned num_rects
Definition: avcodec.h:2231
ff_ass_add_rect
int ff_ass_add_rect(AVSubtitle *sub, const char *dialog, int readorder, int layer, const char *style, const char *speaker)
Add an ASS dialog to a subtitle.
Definition: ass.c:159
AVPacket::data
uint8_t * data
Definition: packet.h:524
AVOption
AVOption.
Definition: opt.h:346
ff_text_decoder
const FFCodec ff_text_decoder
FFCodec
Definition: codec_internal.h:126
text_flush
static void text_flush(AVCodecContext *avctx)
Definition: textdec.c:68
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:130
AV_CODEC_ID_SUBVIEWER1
@ AV_CODEC_ID_SUBVIEWER1
Definition: codec_id.h:565
ass.h
ff_ass_bprint_text_event
void ff_ass_bprint_text_event(AVBPrint *buf, const char *p, int size, const char *linebreaks, int keep_ass_markup)
Escape a text subtitle using ASS syntax into an AVBPrint buffer.
Definition: ass.c:173
options
static const AVOption options[]
Definition: textdec.c:43
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:271
TextContext
Definition: textdec.c:34
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
AVCodecContext::flags2
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:509
AVPacket::size
int size
Definition: packet.h:525
av_bprint_finalize
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:240
codec_internal.h
TextContext::keep_ass_markup
int keep_ass_markup
Definition: textdec.c:37
ff_subviewer1_decoder
const FFCodec ff_subviewer1_decoder
AV_CODEC_ID_STL
@ AV_CODEC_ID_STL
Definition: codec_id.h:564
bprint.h
TextContext::linebreaks
const char * linebreaks
Definition: textdec.c:36
AV_CODEC_ID_PJS
@ AV_CODEC_ID_PJS
Definition: codec_id.h:571
text_decode_frame
static int text_decode_frame(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, const AVPacket *avpkt)
Definition: textdec.c:48
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
textsub_decoder_class
static const AVClass textsub_decoder_class
Definition: textdec.c:75
AV_CODEC_ID_VPLAYER
@ AV_CODEC_ID_VPLAYER
Definition: codec_id.h:570
avcodec.h
ret
ret
Definition: filter_design.txt:187
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
AV_CODEC_ID_TEXT
@ AV_CODEC_ID_TEXT
raw UTF-8 text
Definition: codec_id.h:552
SD
#define SD
Definition: textdec.c:42
ff_stl_decoder
const FFCodec ff_stl_decoder
OFFSET
#define OFFSET(x)
Definition: textdec.c:41
AVCodecContext
main external API structure.
Definition: avcodec.h:445
FF_CODEC_DECODE_SUB_CB
#define FF_CODEC_DECODE_SUB_CB(func)
Definition: codec_internal.h:289
ff_vplayer_decoder
const FFCodec ff_vplayer_decoder
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:472
AVPacket
This structure stores compressed data.
Definition: packet.h:501
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:251
ff_pjs_decoder
const FFCodec ff_pjs_decoder
AV_CODEC_FLAG2_RO_FLUSH_NOOP
#define AV_CODEC_FLAG2_RO_FLUSH_NOOP
Do not reset ASS ReadOrder field on flush (subtitles decoding)
Definition: avcodec.h:392