Home
last modified time | relevance | path

Searched refs:style_flag (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmovtextenc.c57 uint8_t style_flag; member
123 bytestream_put_byte(&p, style->style_flag); in encode_styl()
234 s->d.style_flag = DEFAULT_STYLE_FLAG; in encode_sample_description()
239 s->d.style_flag = (!!style->bold * STYLE_FLAG_BOLD) | in encode_sample_description()
254 bytestream_put_byte(&p, s->d.style_flag); in encode_sample_description()
351 if (s->style_attributes_temp.style_flag != s->d.style_flag || in mov_text_style_start()
382 uint8_t style_flag = 0; in mov_text_style_to_flag() local
386 style_flag = STYLE_FLAG_BOLD; in mov_text_style_to_flag()
389 style_flag = STYLE_FLAG_ITALIC; in mov_text_style_to_flag()
392 style_flag = STYLE_FLAG_UNDERLINE; in mov_text_style_to_flag()
[all …]
Dmovtextdec.c77 uint8_t style_flag; member
190 s_default.style_flag = bytestream_get_byte(&tx3g_ptr); in mov_text_tx3g()
191 m->d.bold = !!(s_default.style_flag & STYLE_FLAG_BOLD); in mov_text_tx3g()
192 m->d.italic = !!(s_default.style_flag & STYLE_FLAG_ITALIC); in mov_text_tx3g()
193 m->d.underline = !!(s_default.style_flag & STYLE_FLAG_UNDERLINE); in mov_text_tx3g()
301 style->style_flag = bytestream_get_byte(&tsmb); in decode_styl()
302 style->bold = !!(style->style_flag & STYLE_FLAG_BOLD); in decode_styl()
303 style->italic = !!(style->style_flag & STYLE_FLAG_ITALIC); in decode_styl()
304 style->underline = !!(style->style_flag & STYLE_FLAG_UNDERLINE); in decode_styl()