|
|
@@ -22,10 +22,16 @@ |
|
|
|
#include <string.h> |
|
|
|
|
|
|
|
#include "avcodec.h" |
|
|
|
#include "ass_split.h" |
|
|
|
#include "ass.h" |
|
|
|
#include "libavutil/avstring.h" |
|
|
|
#include "libavutil/internal.h" |
|
|
|
#include "libavutil/mem.h" |
|
|
|
|
|
|
|
typedef struct { |
|
|
|
int id; ///< current event id, ReadOrder field |
|
|
|
} ASSEncodeContext; |
|
|
|
|
|
|
|
static av_cold int ass_encode_init(AVCodecContext *avctx) |
|
|
|
{ |
|
|
|
avctx->extradata = av_malloc(avctx->subtitle_header_size + 1); |
|
|
@@ -41,15 +47,47 @@ static int ass_encode_frame(AVCodecContext *avctx, |
|
|
|
unsigned char *buf, int bufsize, |
|
|
|
const AVSubtitle *sub) |
|
|
|
{ |
|
|
|
ASSEncodeContext *s = avctx->priv_data; |
|
|
|
int i, len, total_len = 0; |
|
|
|
|
|
|
|
for (i=0; i<sub->num_rects; i++) { |
|
|
|
char ass_line[2048]; |
|
|
|
const char *ass = sub->rects[i]->ass; |
|
|
|
|
|
|
|
if (sub->rects[i]->type != SUBTITLE_ASS) { |
|
|
|
av_log(avctx, AV_LOG_ERROR, "Only SUBTITLE_ASS type supported.\n"); |
|
|
|
return -1; |
|
|
|
} |
|
|
|
|
|
|
|
len = av_strlcpy(buf+total_len, sub->rects[i]->ass, bufsize-total_len); |
|
|
|
if (strncmp(ass, "Dialogue: ", 10)) { |
|
|
|
av_log(avctx, AV_LOG_ERROR, "AVSubtitle rectangle ass \"%s\"" |
|
|
|
" does not look like a SSA markup\n", ass); |
|
|
|
return AVERROR_INVALIDDATA; |
|
|
|
} |
|
|
|
|
|
|
|
if (avctx->codec->id == AV_CODEC_ID_ASS) { |
|
|
|
long int layer; |
|
|
|
char *p; |
|
|
|
|
|
|
|
if (i > 0) { |
|
|
|
av_log(avctx, AV_LOG_ERROR, "ASS encoder supports only one " |
|
|
|
"ASS rectangle field.\n"); |
|
|
|
return AVERROR_INVALIDDATA; |
|
|
|
} |
|
|
|
|
|
|
|
ass += 10; // skip "Dialogue: " |
|
|
|
/* parse Layer field. If it's a Marked field, the content |
|
|
|
* will be "Marked=N" instead of the layer num, so we will |
|
|
|
* have layer=0, which is fine. */ |
|
|
|
layer = strtol(ass, &p, 10); |
|
|
|
if (*p) p += strcspn(p, ",") + 1; // skip layer or marked |
|
|
|
if (*p) p += strcspn(p, ",") + 1; // skip start timestamp |
|
|
|
if (*p) p += strcspn(p, ",") + 1; // skip end timestamp |
|
|
|
snprintf(ass_line, sizeof(ass_line), "%d,%ld,%s", ++s->id, layer, p); |
|
|
|
ass_line[strcspn(ass_line, "\r\n")] = 0; |
|
|
|
ass = ass_line; |
|
|
|
} |
|
|
|
len = av_strlcpy(buf+total_len, ass, bufsize-total_len); |
|
|
|
|
|
|
|
if (len > bufsize-total_len-1) { |
|
|
|
av_log(avctx, AV_LOG_ERROR, "Buffer too small for ASS event.\n"); |
|
|
@@ -62,11 +100,26 @@ static int ass_encode_frame(AVCodecContext *avctx, |
|
|
|
return total_len; |
|
|
|
} |
|
|
|
|
|
|
|
AVCodec ff_ass_encoder = { |
|
|
|
.name = "ass", |
|
|
|
#if CONFIG_SSA_ENCODER |
|
|
|
AVCodec ff_ssa_encoder = { |
|
|
|
.name = "ssa", |
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"), |
|
|
|
.type = AVMEDIA_TYPE_SUBTITLE, |
|
|
|
.id = AV_CODEC_ID_SSA, |
|
|
|
.init = ass_encode_init, |
|
|
|
.encode_sub = ass_encode_frame, |
|
|
|
.priv_data_size = sizeof(ASSEncodeContext), |
|
|
|
}; |
|
|
|
#endif |
|
|
|
|
|
|
|
#if CONFIG_ASS_ENCODER |
|
|
|
AVCodec ff_ass_encoder = { |
|
|
|
.name = "ass", |
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("ASS (Advanced SubStation Alpha) subtitle"), |
|
|
|
.type = AVMEDIA_TYPE_SUBTITLE, |
|
|
|
.id = AV_CODEC_ID_ASS, |
|
|
|
.init = ass_encode_init, |
|
|
|
.encode_sub = ass_encode_frame, |
|
|
|
.priv_data_size = sizeof(ASSEncodeContext), |
|
|
|
}; |
|
|
|
#endif |