Commit d3c012ff authored by John Stebbins's avatar John Stebbins Committed by Philip Langdale

lavc/movtextdec: handle changes to default style flags

Style flags were only being turned on.  If the default was on and style
record turned off, style flag remained on.
Signed-off-by: 's avatarPhilip Langdale <philipl@overt.org>
parent 5f39f63a
...@@ -55,9 +55,9 @@ typedef struct { ...@@ -55,9 +55,9 @@ typedef struct {
int fontsize; int fontsize;
int color; int color;
int back_color; int back_color;
int bold; uint8_t bold;
int italic; uint8_t italic;
int underline; uint8_t underline;
int alignment; int alignment;
} MovTextDefault; } MovTextDefault;
...@@ -70,6 +70,9 @@ typedef struct { ...@@ -70,6 +70,9 @@ typedef struct {
uint16_t style_start; uint16_t style_start;
uint16_t style_end; uint16_t style_end;
uint8_t style_flag; uint8_t style_flag;
uint8_t bold;
uint8_t italic;
uint8_t underline;
uint8_t fontsize; uint8_t fontsize;
uint16_t style_fontID; uint16_t style_fontID;
} StyleBox; } StyleBox;
...@@ -313,6 +316,9 @@ static int decode_styl(const uint8_t *tsmb, MovTextContext *m, AVPacket *avpkt) ...@@ -313,6 +316,9 @@ static int decode_styl(const uint8_t *tsmb, MovTextContext *m, AVPacket *avpkt)
m->s_temp->style_fontID = AV_RB16(tsmb); m->s_temp->style_fontID = AV_RB16(tsmb);
tsmb += 2; tsmb += 2;
m->s_temp->style_flag = AV_RB8(tsmb); m->s_temp->style_flag = AV_RB8(tsmb);
m->s_temp->bold = !!(m->s_temp->style_flag & STYLE_FLAG_BOLD);
m->s_temp->italic = !!(m->s_temp->style_flag & STYLE_FLAG_ITALIC);
m->s_temp->underline = !!(m->s_temp->style_flag & STYLE_FLAG_UNDERLINE);
tsmb++; tsmb++;
m->s_temp->fontsize = AV_RB8(tsmb); m->s_temp->fontsize = AV_RB8(tsmb);
av_dynarray_add(&m->s, &m->count_s, m->s_temp); av_dynarray_add(&m->s, &m->count_s, m->s_temp);
...@@ -373,12 +379,12 @@ static int text_to_ass(AVBPrint *buf, const char *text, const char *text_end, ...@@ -373,12 +379,12 @@ static int text_to_ass(AVBPrint *buf, const char *text, const char *text_end,
if ((m->box_flags & STYL_BOX) && entry < m->style_entries) { if ((m->box_flags & STYL_BOX) && entry < m->style_entries) {
if (text_pos == m->s[entry]->style_start) { if (text_pos == m->s[entry]->style_start) {
style_active = 1; style_active = 1;
if (m->s[entry]->style_flag & STYLE_FLAG_BOLD) if (m->s[entry]->bold ^ m->d.bold)
av_bprintf(buf, "{\\b1}"); av_bprintf(buf, "{\\b%d}", m->s[entry]->bold);
if (m->s[entry]->style_flag & STYLE_FLAG_ITALIC) if (m->s[entry]->italic ^ m->d.italic)
av_bprintf(buf, "{\\i1}"); av_bprintf(buf, "{\\i%d}", m->s[entry]->italic);
if (m->s[entry]->style_flag & STYLE_FLAG_UNDERLINE) if (m->s[entry]->underline ^ m->d.underline)
av_bprintf(buf, "{\\u1}"); av_bprintf(buf, "{\\u%d}", m->s[entry]->underline);
av_bprintf(buf, "{\\fs%d}", m->s[entry]->fontsize); av_bprintf(buf, "{\\fs%d}", m->s[entry]->fontsize);
for (i = 0; i < m->ftab_entries; i++) { for (i = 0; i < m->ftab_entries; i++) {
if (m->s[entry]->style_fontID == m->ftab[i]->fontID) if (m->s[entry]->style_fontID == m->ftab[i]->fontID)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment