/* decssasub.c
Copyright (c) 2003-2019 HandBrake Team
This file is part of the HandBrake source code
Homepage: .
It may be used under the terms of the GNU General Public License v2.
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
/*
* Converts SSA subtitles to either:
* (1) TEXTSUB format: UTF-8 subtitles with limited HTML-style markup (, , ), or
* (2) PICTURESUB format, using libass.
*
* SSA format references:
* http://www.matroska.org/technical/specs/subtitles/ssa.html
* http://moodub.free.fr/video/ass-specs.doc
* vlc-1.0.4/modules/codec/subtitles/subsass.c:ParseSSAString
*
* libass references:
* libass-0.9.9/ass.h
* vlc-1.0.4/modules/codec/libass.c
*
* @author David Foster (davidfstr)
*/
#include
#include
#include
#include "hb.h"
#include
#include "decssasub.h"
#include "colormap.h"
struct hb_work_private_s
{
hb_job_t * job;
hb_subtitle_t * subtitle;
// SSA Import
FILE * file;
int readOrder;
};
#define SSA_VERBOSE_PACKETS 0
static int ssa_update_style(char *ssa, hb_subtitle_style_t *style)
{
int pos, end, index;
if (ssa[0] != '{')
return 0;
pos = 1;
while (ssa[pos] != '}' && ssa[pos] != '\0')
{
index = -1;
// Skip any malformed markup junk
while (strchr("\\}", ssa[pos]) == NULL) pos++;
pos++;
// Check for an index that is in some markup (e.g. font color)
if (isdigit(ssa[pos]))
{
index = ssa[pos++] - 0x30;
}
// Find the end of this markup clause
end = pos;
while (strchr("\\}", ssa[end]) == NULL) end++;
// Handle simple integer valued attributes
if (strchr("ibu", ssa[pos]) != NULL && isdigit(ssa[pos+1]))
{
int val = strtol(ssa + pos + 1, NULL, 0);
switch (ssa[pos])
{
case 'i':
style->flags = (style->flags & ~HB_STYLE_FLAG_ITALIC) |
!!val * HB_STYLE_FLAG_ITALIC;
break;
case 'b':
style->flags = (style->flags & ~HB_STYLE_FLAG_BOLD) |
!!val * HB_STYLE_FLAG_BOLD;
break;
case 'u':
style->flags = (style->flags & ~HB_STYLE_FLAG_UNDERLINE) |
!!val * HB_STYLE_FLAG_UNDERLINE;
break;
}
}
if (ssa[pos] == 'c' && ssa[pos+1] == '&' && ssa[pos+2] == 'H')
{
// Font color markup
char *endptr;
uint32_t bgr;
bgr = strtol(ssa + pos + 3, &endptr, 16);
if (*endptr == '&')
{
switch (index)
{
case -1:
case 1:
style->fg_rgb = HB_BGR_TO_RGB(bgr);
break;
case 2:
style->alt_rgb = HB_BGR_TO_RGB(bgr);
break;
case 3:
style->ol_rgb = HB_BGR_TO_RGB(bgr);
break;
case 4:
style->bg_rgb = HB_BGR_TO_RGB(bgr);
break;
default:
// Unknown color index, ignore
break;
}
}
}
if ((ssa[pos] == 'a' && ssa[pos+1] == '&' && ssa[pos+2] == 'H') ||
(!strcmp(ssa+pos, "alpha") && ssa[pos+5] == '&' && ssa[pos+6] == 'H'))
{
// Font alpha markup
char *endptr;
uint8_t alpha;
int alpha_pos = 3;
if (ssa[1] == 'l')
alpha_pos = 7;
alpha = strtol(ssa + pos + alpha_pos, &endptr, 16);
if (*endptr == '&')
{
// SSA alpha is inverted 0 is opaque
alpha = 255 - alpha;
switch (index)
{
case -1:
case 1:
style->fg_alpha = alpha;
break;
case 2:
style->alt_alpha = alpha;
break;
case 3:
style->ol_alpha = alpha;
break;
case 4:
style->bg_alpha = alpha;
break;
default:
// Unknown alpha index, ignore
break;
}
}
}
pos = end;
}
if (ssa[pos] == '}')
pos++;
return pos;
}
char * hb_ssa_to_text(char *in, int *consumed, hb_subtitle_style_t *style)
{
int markup_len = 0;
int in_pos = 0;
int out_pos = 0;
char *out = malloc(strlen(in) + 1); // out will never be longer than in
for (in_pos = 0; in[in_pos] != '\0'; in_pos++)
{
if ((markup_len = ssa_update_style(in + in_pos, style)))
{
*consumed = in_pos + markup_len;
out[out_pos++] = '\0';
return out;
}
// Check escape codes
if (in[in_pos] == '\\')
{
in_pos++;
switch (in[in_pos])
{
case '\0':
in_pos--;
break;
case 'N':
case 'n':
out[out_pos++] = '\n';
break;
case 'h':
out[out_pos++] = ' ';
break;
default:
out[out_pos++] = in[in_pos];
break;
}
}
else
{
out[out_pos++] = in[in_pos];
}
}
*consumed = in_pos;
out[out_pos++] = '\0';
return out;
}
void hb_ssa_style_init(hb_subtitle_style_t *style)
{
style->flags = 0;
style->fg_rgb = 0x00FFFFFF;
style->alt_rgb = 0x00FFFFFF;
style->ol_rgb = 0x000F0F0F;
style->bg_rgb = 0x000F0F0F;
style->fg_alpha = 0xFF;
style->alt_alpha = 0xFF;
style->ol_alpha = 0xFF;
style->bg_alpha = 0xFF;
}
static int extradataInit( hb_work_private_t * pv )
{
int events = 0;
char * events_tag = "[Events]";
char * format_tag = "Format:";
int events_len = strlen(events_tag);;
int format_len = strlen(format_tag);;
char * header = NULL;
while (1)
{
char * line = NULL;
ssize_t len;
size_t size = 0;
len = getline(&line, &size, pv->file);
if (len < 0)
{
// Incomplete SSA header
free(header);
return 1;
}
if (len > 0 && line != NULL)
{
if (header != NULL)
{
char * tmp = header;
header = hb_strdup_printf("%s%s", header, line);
free(tmp);
}
else
{
header = strdup(line);
}
if (!events)
{
if (len >= events_len &&
!strncasecmp(line, events_tag, events_len))
{
events = 1;
}
}
else
{
if (len >= format_len &&
!strncasecmp(line, format_tag, format_len))
{
free(line);
break;
}
// Improperly formatted SSA header
free(header);
return 1;
}
}
free(line);
}
pv->subtitle->extradata = (uint8_t*)header;
pv->subtitle->extradata_size = strlen(header) + 1;
return 0;
}
static int decssaInit( hb_work_object_t * w, hb_job_t * job )
{
hb_work_private_t * pv;
pv = calloc( 1, sizeof( hb_work_private_t ) );
w->private_data = pv;
pv->job = job;
pv->subtitle = w->subtitle;
if (w->fifo_in == NULL && pv->subtitle->config.src_filename != NULL)
{
pv->file = hb_fopen(pv->subtitle->config.src_filename, "r");
if(pv->file == NULL)
{
hb_error("Could not open the SSA subtitle file '%s'\n",
pv->subtitle->config.src_filename);
goto fail;
}
// Read SSA header and store in subtitle extradata
if (extradataInit(pv))
{
goto fail;
}
}
return 0;
fail:
if (pv != NULL)
{
if (pv->file != NULL)
{
fclose(pv->file);
}
free(pv);
w->private_data = NULL;
}
return 1;
}
#define SSA_2_HB_TIME(hr,min,sec,centi) \
( 90LL * ( hr * 1000LL * 60 * 60 +\
min * 1000LL * 60 +\
sec * 1000LL +\
centi * 10LL ) )
/*
* Parses the start and stop time from the specified SSA packet.
*
* Returns true if parsing failed; false otherwise.
*/
static int parse_timing( char *line, int64_t *start, int64_t *stop )
{
/*
* Parse Start and End fields for timing information
*/
int start_hr, start_min, start_sec, start_centi;
int end_hr, end_min, end_sec, end_centi;
// SSA subtitles have an empty layer field (bare ','). The scanf
// format specifier "%*128[^,]" will not match on a bare ','. There
// must be at least one non ',' character in the match. So the format
// specifier is placed directly next to the ':' so that the next
// expected ' ' after the ':' will be the character it matches on
// when there is no layer field.
int numPartsRead = sscanf( (char *) line, "Dialogue:%*128[^,],"
"%d:%d:%d.%d," // Start
"%d:%d:%d.%d,", // End
&start_hr, &start_min, &start_sec, &start_centi,
&end_hr, &end_min, &end_sec, &end_centi );
if ( numPartsRead != 8 )
return 1;
*start = SSA_2_HB_TIME(start_hr, start_min, start_sec, start_centi);
*stop = SSA_2_HB_TIME( end_hr, end_min, end_sec, end_centi);
return 0;
}
static char * find_field( char * pos, char * end, int fieldNum )
{
int curFieldID = 1;
while (pos < end)
{
if ( *pos++ == ',' )
{
curFieldID++;
if ( curFieldID == fieldNum )
return pos;
}
}
return NULL;
}
/*
* SSA line format:
* Dialogue: Marked,Start,End,Style,Name,MarginL,MarginR,MarginV,Effect,Text '\0'
* 1 2 3 4 5 6 7 8 9 10
*
* MKV-SSA packet format:
* ReadOrder,Marked, Style,Name,MarginL,MarginR,MarginV,Effect,Text '\0'
* 1 2 3 4 5 6 7 8 9
*/
static hb_buffer_t *
decode_line_to_mkv_ssa( hb_work_private_t * pv, char * line, int size )
{
hb_buffer_t * out;
int64_t start, stop;
if (parse_timing(line, &start, &stop))
{
goto fail;
}
// Convert the SSA packet to MKV-SSA format, which is what libass expects
char * mkvSSA;
int numPartsRead;
char * styleToTextFields;
char * layerField = malloc(size);
// SSA subtitles have an empty layer field (bare ','). The scanf
// format specifier "%*128[^,]" will not match on a bare ','. There
// must be at least one non ',' character in the match. So the format
// specifier is placed directly next to the ':' so that the next
// expected ' ' after the ':' will be the character it matches on
// when there is no layer field.
numPartsRead = sscanf( (char *)line, "Dialogue:%128[^,],", layerField );
if ( numPartsRead != 1 )
{
free(layerField);
goto fail;
}
styleToTextFields = find_field( line, line + size, 4 );
if ( styleToTextFields == NULL ) {
free( layerField );
goto fail;
}
// The sscanf conversion above will result in an extra space
// before the layerField. Strip the space.
char *stripLayerField = layerField;
for(; *stripLayerField == ' '; stripLayerField++);
out = hb_buffer_init( size + 1 );
mkvSSA = (char*)out->data;
mkvSSA[0] = '\0';
sprintf(mkvSSA, "%d", pv->readOrder++);
strcat( mkvSSA, "," );
strcat( mkvSSA, stripLayerField );
strcat( mkvSSA, "," );
strcat( mkvSSA, (char *)styleToTextFields );
out->size = strlen(mkvSSA) + 1;
out->s.frametype = HB_FRAME_SUBTITLE;
out->s.start = start + pv->subtitle->config.offset * 90;
out->s.duration = stop - start;
out->s.stop = stop + pv->subtitle->config.offset * 90;
if( out->size == 0 )
{
hb_buffer_close(&out);
}
free( layerField );
return out;
fail:
hb_log( "decssasub: malformed SSA subtitle packet: %.*s\n", size, line );
return NULL;
}
/*
* Read the SSA file and put the entries into the subtitle fifo for all to read
*/
static hb_buffer_t * ssa_read( hb_work_private_t * pv )
{
hb_buffer_t * out;
while (!feof(pv->file))
{
char * line = NULL;
ssize_t len;
size_t size = 0;
len = getline(&line, &size, pv->file);
if (len > 0 && line != NULL)
{
out = decode_line_to_mkv_ssa(pv, line, len);
if (out != NULL)
{
return out;
}
}
if (len < 0)
{
// Error or EOF
out = hb_buffer_eof_init();
return out;
}
}
out = hb_buffer_eof_init();
return out;
}
static int decssaWork( hb_work_object_t * w, hb_buffer_t ** buf_in,
hb_buffer_t ** buf_out )
{
hb_work_private_t * pv = w->private_data;
hb_buffer_t * in = *buf_in;
*buf_in = NULL;
if (in == NULL && pv->file != NULL)
{
in = ssa_read(pv);
}
*buf_out = in;
if (in->s.flags & HB_BUF_FLAG_EOF)
{
return HB_WORK_DONE;
}
// Not much to do here. ffmpeg already supplies SSA subtitles in the
// requried matroska packet format.
//
// We require string termination of the buffer
hb_buffer_realloc(in, ++in->size);
in->data[in->size - 1] = '\0';
#if SSA_VERBOSE_PACKETS
printf("\nPACKET(%"PRId64",%"PRId64"): %.*s\n", in->s.start/90, in->s.stop/90, in->size, in->data);
#endif
return HB_WORK_OK;
}
static void decssaClose( hb_work_object_t * w )
{
free( w->private_data );
}
hb_work_object_t hb_decssasub =
{
WORK_DECSSASUB,
"SSA Subtitle Decoder",
decssaInit,
decssaWork,
decssaClose
};