Go to the documentation of this file.
28 #define SCREEN_ROWS 15
29 #define SCREEN_COLUMNS 32
31 #define SET_FLAG(var, val) ( (var) |= ( 1 << (val)) )
32 #define UNSET_FLAG(var, val) ( (var) &= ~( 1 << (val)) )
33 #define CHECK_FLAG(var, val) ( (var) & ( 1 << (val)) )
71 #define CHARSET_OVERRIDE_LIST(START_SET, ENTRY, END_SET) \
72 START_SET(CCSET_BASIC_AMERICAN) \
73 ENTRY(0x27, "\u2019") \
74 ENTRY(0x2a, "\u00e1") \
75 ENTRY(0x5c, "\u00e9") \
76 ENTRY(0x5e, "\u00ed") \
77 ENTRY(0x5f, "\u00f3") \
78 ENTRY(0x60, "\u00fa") \
79 ENTRY(0x7b, "\u00e7") \
80 ENTRY(0x7c, "\u00f7") \
81 ENTRY(0x7d, "\u00d1") \
82 ENTRY(0x7e, "\u00f1") \
83 ENTRY(0x7f, "\u2588") \
85 START_SET(CCSET_SPECIAL_AMERICAN) \
86 ENTRY(0x30, "\u00ae") \
87 ENTRY(0x31, "\u00b0") \
88 ENTRY(0x32, "\u00bd") \
89 ENTRY(0x33, "\u00bf") \
90 ENTRY(0x34, "\u2122") \
91 ENTRY(0x35, "\u00a2") \
92 ENTRY(0x36, "\u00a3") \
93 ENTRY(0x37, "\u266a") \
94 ENTRY(0x38, "\u00e0") \
95 ENTRY(0x39, "\u00A0") \
96 ENTRY(0x3a, "\u00e8") \
97 ENTRY(0x3b, "\u00e2") \
98 ENTRY(0x3c, "\u00ea") \
99 ENTRY(0x3d, "\u00ee") \
100 ENTRY(0x3e, "\u00f4") \
101 ENTRY(0x3f, "\u00fb") \
103 START_SET(CCSET_EXTENDED_SPANISH_FRENCH_MISC) \
104 ENTRY(0x20, "\u00c1") \
105 ENTRY(0x21, "\u00c9") \
106 ENTRY(0x22, "\u00d3") \
107 ENTRY(0x23, "\u00da") \
108 ENTRY(0x24, "\u00dc") \
109 ENTRY(0x25, "\u00fc") \
110 ENTRY(0x26, "\u00b4") \
111 ENTRY(0x27, "\u00a1") \
113 ENTRY(0x29, "\u2018") \
115 ENTRY(0x2b, "\u00a9") \
116 ENTRY(0x2c, "\u2120") \
117 ENTRY(0x2d, "\u00b7") \
118 ENTRY(0x2e, "\u201c") \
119 ENTRY(0x2f, "\u201d") \
120 ENTRY(0x30, "\u00c0") \
121 ENTRY(0x31, "\u00c2") \
122 ENTRY(0x32, "\u00c7") \
123 ENTRY(0x33, "\u00c8") \
124 ENTRY(0x34, "\u00ca") \
125 ENTRY(0x35, "\u00cb") \
126 ENTRY(0x36, "\u00eb") \
127 ENTRY(0x37, "\u00ce") \
128 ENTRY(0x38, "\u00cf") \
129 ENTRY(0x39, "\u00ef") \
130 ENTRY(0x3a, "\u00d4") \
131 ENTRY(0x3b, "\u00d9") \
132 ENTRY(0x3c, "\u00f9") \
133 ENTRY(0x3d, "\u00db") \
134 ENTRY(0x3e, "\u00ab") \
135 ENTRY(0x3f, "\u00bb") \
137 START_SET(CCSET_EXTENDED_PORTUGUESE_GERMAN_DANISH) \
138 ENTRY(0x20, "\u00c3") \
139 ENTRY(0x21, "\u00e3") \
140 ENTRY(0x22, "\u00cd") \
141 ENTRY(0x23, "\u00cc") \
142 ENTRY(0x24, "\u00ec") \
143 ENTRY(0x25, "\u00d2") \
144 ENTRY(0x26, "\u00f2") \
145 ENTRY(0x27, "\u00d5") \
146 ENTRY(0x28, "\u00f5") \
154 ENTRY(0x30, "\u00c4") \
155 ENTRY(0x31, "\u00e4") \
156 ENTRY(0x32, "\u00d6") \
157 ENTRY(0x33, "\u00f6") \
158 ENTRY(0x34, "\u00df") \
159 ENTRY(0x35, "\u00a5") \
160 ENTRY(0x36, "\u00a4") \
161 ENTRY(0x37, "\u00a6") \
162 ENTRY(0x38, "\u00c5") \
163 ENTRY(0x39, "\u00e5") \
164 ENTRY(0x3a, "\u00d8") \
165 ENTRY(0x3b, "\u00f8") \
166 ENTRY(0x3c, "\u250c") \
167 ENTRY(0x3d, "\u2510") \
168 ENTRY(0x3e, "\u2514") \
169 ENTRY(0x3f, "\u2518") \
174 #define START_SET(IDX) \
176 #define ENTRY(idx, string) \
182 #define EMPTY_START(IDX)
184 #define ASSERT_ENTRY(IDX, str) \
185 static_assert(sizeof(str) <= sizeof(charset_overrides[0][0]), \
186 "'" str "' string takes too much space");
292 ctx->cursor_row = 10;
315 ctx->screen[0].row_used = 0;
316 ctx->screen[1].row_used = 0;
317 ctx->prev_cmd[0] = 0;
318 ctx->prev_cmd[1] = 0;
321 ctx->cursor_row = 10;
322 ctx->cursor_column = 0;
323 ctx->cursor_font = 0;
324 ctx->cursor_color = 0;
326 ctx->cursor_charset = 0;
327 ctx->active_screen = 0;
328 ctx->last_real_time = 0;
329 ctx->screen_touched = 0;
330 ctx->buffer_changed = 0;
342 uint8_t col =
ctx->cursor_column;
344 char *font = screen->
fonts[
ctx->cursor_row];
346 char *bg = screen->
bgs[
ctx->cursor_row];
351 font[col] =
ctx->cursor_font;
353 bg[col] =
ctx->bg_color;
354 charset[col] =
ctx->cursor_charset;
356 if (ch)
ctx->cursor_column++;
379 uint8_t cc_valid = (*cc_data_pair & 4) >>2;
380 uint8_t cc_type = *cc_data_pair & 3;
382 *hi = cc_data_pair[1];
388 if (cc_type==0 || cc_type==1) {
398 if ((cc_data_pair[0] == 0xFA || cc_data_pair[0] == 0xFC || cc_data_pair[0] == 0xFD)
399 && (cc_data_pair[1] & 0x7F) == 0 && (cc_data_pair[2] & 0x7F) == 0)
403 if (cc_type == 3 || cc_type == 2)
414 return ctx->screen + !
ctx->active_screen;
419 return ctx->screen +
ctx->active_screen;
438 keep_lines =
FFMIN(
ctx->cursor_row + 1,
ctx->rollup);
441 if (
i >
ctx->cursor_row - keep_lines && i <= ctx->cursor_row)
446 for (
i = 0;
i < keep_lines && screen->
row_used;
i++) {
447 const int i_row =
ctx->cursor_row - keep_lines +
i + 1;
464 struct Screen *screen =
ctx->screen +
ctx->active_screen;
468 const int bidx =
ctx->buffer_index;
476 const char *charset = screen->
charsets[
i];
489 const char *font = screen->
fonts[
i];
490 const char *bg = screen->
bgs[
i];
492 const char *charset = screen->
charsets[
i];
493 const char *
override;
494 int x, y, seen_char = 0;
503 av_bprintf(&
ctx->buffer[bidx],
"{\\an7}{\\pos(%d,%d)}", x, y);
506 const char *e_tag =
"", *s_tag =
"", *c_tag =
"", *b_tag =
"";
511 if (prev_font != font[j]) {
520 e_tag =
"{\\u0}{\\i0}";
531 s_tag =
"{\\u1}{\\i1}";
535 if (prev_color !=
color[j]) {
538 c_tag =
"{\\c&HFFFFFF&}";
541 c_tag =
"{\\c&H00FF00&}";
544 c_tag =
"{\\c&HFF0000&}";
547 c_tag =
"{\\c&HFFFF00&}";
550 c_tag =
"{\\c&H0000FF&}";
553 c_tag =
"{\\c&H00FFFF&}";
556 c_tag =
"{\\c&HFF00FF&}";
560 if (prev_bg_color != bg[j]) {
563 b_tag =
"{\\3c&HFFFFFF&}";
566 b_tag =
"{\\3c&H00FF00&}";
569 b_tag =
"{\\3c&HFF0000&}";
572 b_tag =
"{\\3c&HFFFF00&}";
575 b_tag =
"{\\3c&H0000FF&}";
578 b_tag =
"{\\3c&H00FFFF&}";
581 b_tag =
"{\\3c&HFF00FF&}";
584 b_tag =
"{\\3c&H000000&}";
590 prev_color =
color[j];
591 prev_bg_color = bg[j];
594 av_bprintf(&
ctx->buffer[bidx],
"%s%s%s%s%s", e_tag, s_tag, c_tag, b_tag,
override);
596 }
else if (row[j] ==
' ' && !seen_char) {
597 av_bprintf(&
ctx->buffer[bidx],
"%s%s%s%s\\h", e_tag, s_tag, c_tag, b_tag);
599 av_bprintf(&
ctx->buffer[bidx],
"%s%s%s%s%c", e_tag, s_tag, c_tag, b_tag, row[j]);
609 if (screen->
row_used &&
ctx->buffer[bidx].len >= 2) {
610 ctx->buffer[bidx].len -= 2;
611 ctx->buffer[bidx].str[
ctx->buffer[bidx].len] = 0;
613 ctx->buffer_changed = 1;
619 ctx->buffer_time[0] =
ctx->buffer_time[1];
620 ctx->buffer_time[1] =
pts;
625 const int i = (lo & 0xf) >> 1;
647 static const int8_t row_map[] = {
648 11, -1, 1, 2, 3, 4, 12, 13, 14, 15, 5, 6, 7, 8, 9, 10
650 const int index = ( (hi<<1) & 0x0e) | ( (lo>>5) & 0x01 );
654 if (row_map[
index] <= 0) {
661 ctx->cursor_row = row_map[
index] - 1;
665 ctx->cursor_column = 0;
667 for (
i = 0;
i < indent;
i++) {
674 struct Screen *screen =
ctx->screen +
ctx->active_screen;
697 ctx->active_screen = !
ctx->active_screen;
704 ctx->cursor_column = 0;
731 if (
ctx->cursor_column > 0)
732 ctx->cursor_column -= 1;
736 if (
ctx->cursor_column > 0)
737 ctx->cursor_column -= 1;
752 ctx->screen_touched = 1;
764 if (hi ==
ctx->prev_cmd[0] && lo ==
ctx->prev_cmd[1]) {
769 ctx->prev_cmd[0] = hi;
770 ctx->prev_cmd[1] = lo;
772 if ( (hi == 0x10 && (lo >= 0x40 && lo <= 0x5f)) ||
773 ( (hi >= 0x11 && hi <= 0x17) && (lo >= 0x40 && lo <= 0x7f) ) ) {
775 }
else if ( ( hi == 0x11 && lo >= 0x20 && lo <= 0x2f ) ||
776 ( hi == 0x17 && lo >= 0x2e && lo <= 0x2f) ) {
778 }
else if ((hi == 0x10 && lo >= 0x20 && lo <= 0x2f)) {
780 }
else if (hi == 0x14 || hi == 0x15 || hi == 0x1c) {
792 ctx->rollup = lo - 0x23;
813 ctx->cursor_column = 0;
819 if (
ctx->real_time) {
820 struct Screen *screen =
ctx->screen + !
ctx->active_screen;
830 ff_dlog(
ctx->logctx,
"Unknown command 0x%hhx 0x%hhx\n", hi, lo);
833 }
else if (hi >= 0x11 && hi <= 0x13) {
836 }
else if (hi >= 0x20) {
839 ctx->prev_cmd[0] =
ctx->prev_cmd[1] = 0;
840 }
else if (hi == 0x17 && lo >= 0x21 && lo <= 0x23) {
843 for (
i = 0;
i < lo - 0x20;
i++) {
848 ff_dlog(
ctx->logctx,
"Unknown command 0x%hhx 0x%hhx\n", hi, lo);
855 int *got_sub,
const AVPacket *avpkt)
861 int bidx =
ctx->buffer_index;
862 const uint8_t *bptr = avpkt->
data;
866 unsigned nb_rect_allocated = 0;
868 for (
i = 0;
i <
len;
i += 3) {
869 uint8_t hi, cc_type = bptr[
i] & 1;
871 if (
ctx->data_field < 0)
872 ctx->data_field = cc_type;
877 if (cc_type !=
ctx->data_field)
884 if (!
ctx->buffer_changed)
886 ctx->buffer_changed = 0;
889 ctx->buffer_index = bidx = !
ctx->buffer_index;
893 if (
ctx->buffer[bidx].str[0] ||
ctx->real_time) {
894 ff_dlog(avctx,
"cdp writing data (%s)\n",
ctx->buffer[bidx].str);
897 end_time =
ctx->buffer_time[1];
906 ctx->last_real_time = sub->
pts;
907 ctx->screen_touched = 0;
911 if (!bptr && !
ctx->real_time &&
ctx->buffer[!
ctx->buffer_index].str[0]) {
912 bidx = !
ctx->buffer_index;
917 sub->
pts =
ctx->buffer_time[1];
924 if (
ctx->real_time &&
ctx->screen_touched &&
926 ctx->last_real_time = sub->
pts;
927 ctx->screen_touched = 0;
930 ctx->buffer_changed = 0;
942 #define OFFSET(x) offsetof(CCaptionSubContext, x)
943 #define SD AV_OPT_FLAG_SUBTITLE_PARAM | AV_OPT_FLAG_DECODING_PARAM
945 {
"real_time",
"emit subtitle events as they are decoded for real-time display",
OFFSET(real_time),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
SD },
946 {
"real_time_latency_msec",
"minimum elapsed time between emitting real-time subtitle events",
OFFSET(real_time_latency_msec),
AV_OPT_TYPE_INT, { .i64 = 200 }, 0, 500,
SD },
947 {
"data_field",
"select data field",
OFFSET(data_field),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1,
SD, .unit =
"data_field" },
948 {
"auto",
"pick first one that appears", 0,
AV_OPT_TYPE_CONST, { .i64 =-1 }, 0, 0,
SD, .unit =
"data_field" },
static struct Screen * get_writing_screen(CCaptionSubContext *ctx)
int ff_ass_subtitle_header(AVCodecContext *avctx, const char *font, int font_size, int color, int back_color, int bold, int italic, int underline, int border_style, int alignment)
Generate a suitable AVCodecContext.subtitle_header for SUBTITLE_ASS.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_BPRINT_SIZE_UNLIMITED
#define CHECK_FLAG(var, val)
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
static void handle_bgattr(CCaptionSubContext *ctx, uint8_t hi, uint8_t lo)
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
@ CCSET_EXTENDED_SPANISH_FRENCH_MISC
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
#define ASS_DEFAULT_ALIGNMENT
#define CHARSET_OVERRIDE_LIST(START_SET, ENTRY, END_SET)
AVCodec p
The public AVCodec.
#define ASSERT_ENTRY(IDX, str)
int ff_ass_add_rect2(AVSubtitle *sub, const char *dialog, int readorder, int layer, const char *style, const char *speaker, unsigned *nb_rect_allocated)
Add an ASS dialog to a subtitle.
static int handle_eoc(CCaptionSubContext *ctx)
static const struct twinvq_data tab
static const unsigned char bg_attribs[8]
static int handle_edm(CCaptionSubContext *ctx)
int real_time_latency_msec
static void write_char(CCaptionSubContext *ctx, struct Screen *screen, char ch)
uint8_t characters[SCREEN_ROWS+1][SCREEN_COLUMNS+1]
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
int64_t pts
Same as packet pts, in AV_TIME_BASE.
#define CODEC_LONG_NAME(str)
#define ASS_DEFAULT_BACK_COLOR
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
static void update_time(CCaptionSubContext *ctx, int64_t pts)
Rational number (pair of numerator and denominator).
const char * av_default_item_name(void *ptr)
Return the context name.
void(* flush)(AVBSFContext *ctx)
#define ASS_DEFAULT_PLAYRESY
static void handle_delete_end_of_row(CCaptionSubContext *ctx)
int flags2
AV_CODEC_FLAG2_*.
int(* init)(AVBSFContext *ctx)
static const char charset_overrides[4][128][sizeof("\u266a")]
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
static int64_t start_time
uint8_t charsets[SCREEN_ROWS+1][SCREEN_COLUMNS+1]
#define ASS_DEFAULT_PLAYRESX
static const unsigned char pac2_attribs[32][3]
static void flush_decoder(AVCodecContext *avctx)
uint32_t end_display_time
static int validate_cc_data_pair(const uint8_t *cc_data_pair, uint8_t *hi)
This function after validating parity bit, also remove it from data pair.
#define SET_FLAG(var, val)
#define ASS_DEFAULT_UNDERLINE
static av_cold int init_decoder(AVCodecContext *avctx)
@ CCFONT_UNDERLINED_ITALICS
static const AVOption options[]
uint8_t bgs[SCREEN_ROWS+1][SCREEN_COLUMNS+1]
#define i(width, name, range_min, range_max)
static int capture_screen(CCaptionSubContext *ctx)
#define UNSET_FLAG(var, val)
const FFCodec ff_ccaption_decoder
const char * name
Name of the codec implementation.
#define ASS_DEFAULT_ITALIC
#define ASS_DEFAULT_COLOR
static void handle_textattr(CCaptionSubContext *ctx, uint8_t hi, uint8_t lo)
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
void av_bprintf(AVBPrint *buf, const char *fmt,...)
uint8_t colors[SCREEN_ROWS+1][SCREEN_COLUMNS+1]
#define ASS_DEFAULT_FONT_SIZE
main external API structure.
static av_cold int close_decoder(AVCodecContext *avctx)
uint8_t fonts[SCREEN_ROWS+1][SCREEN_COLUMNS+1]
@ AV_OPT_TYPE_INT
Underlying C type is int.
static int decode(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub, const AVPacket *avpkt)
void av_bprint_clear(AVBPrint *buf)
Reset the string to "" but keep internal allocated data.
static const AVClass ccaption_dec_class
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
#define FF_CODEC_DECODE_SUB_CB(func)
@ CCSET_EXTENDED_PORTUGUESE_GERMAN_DANISH
static int process_cc608(CCaptionSubContext *ctx, uint8_t hi, uint8_t lo)
This structure stores compressed data.
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
static void handle_pac(CCaptionSubContext *ctx, uint8_t hi, uint8_t lo)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static void handle_char(CCaptionSubContext *ctx, char hi, char lo)
static const AVRational ms_tb
static void roll_up(CCaptionSubContext *ctx)
#define AV_CODEC_FLAG2_RO_FLUSH_NOOP
Do not reset ASS ReadOrder field on flush (subtitles decoding)
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
#define ENTRY(idx, string)