Lines Matching refs:pen_attributes
673 window->pen_attributes.pen_size = PEN_SIZE_STANDARD; in gst_cea708dec_set_pen_style()
674 window->pen_attributes.font_style = FONT_STYLE_DEFAULT; in gst_cea708dec_set_pen_style()
675 window->pen_attributes.offset = PEN_OFFSET_NORMAL; in gst_cea708dec_set_pen_style()
676 window->pen_attributes.italics = FALSE; in gst_cea708dec_set_pen_style()
677 window->pen_attributes.underline = FALSE; in gst_cea708dec_set_pen_style()
678 window->pen_attributes.edge_type = EDGE_TYPE_NONE; in gst_cea708dec_set_pen_style()
689 window->pen_attributes.font_style = FONT_STYLE_DEFAULT; in gst_cea708dec_set_pen_style()
693 window->pen_attributes.font_style = FONT_STYLE_MONO_SERIF; in gst_cea708dec_set_pen_style()
697 window->pen_attributes.font_style = FONT_STYLE_PROP_SERIF; in gst_cea708dec_set_pen_style()
701 window->pen_attributes.font_style = FONT_STYLE_MONO_SANS; in gst_cea708dec_set_pen_style()
705 window->pen_attributes.font_style = FONT_STYLE_PROP_SANS; in gst_cea708dec_set_pen_style()
709 window->pen_attributes.font_style = FONT_STYLE_MONO_SANS; in gst_cea708dec_set_pen_style()
714 window->pen_attributes.font_style = FONT_STYLE_PROP_SANS; in gst_cea708dec_set_pen_style()
1055 current->pen_attributes.underline, in gst_cea708dec_show_pango_window()
1056 current->pen_attributes.italics, in gst_cea708dec_show_pango_window()
1057 current->pen_attributes.font_style, in gst_cea708dec_show_pango_window()
1058 current->pen_attributes.pen_size); in gst_cea708dec_show_pango_window()
1069 if ((current->pen_attributes.underline != span_control.underline) in gst_cea708dec_show_pango_window()
1070 || (current->pen_attributes.italics != span_control.italics) in gst_cea708dec_show_pango_window()
1071 || (current->pen_attributes.font_style != in gst_cea708dec_show_pango_window()
1073 || (current->pen_attributes.pen_size != span_control.size) in gst_cea708dec_show_pango_window()
1093 if (current->pen_attributes.underline) { in gst_cea708dec_show_pango_window()
1102 if (current->pen_attributes.italics) { in gst_cea708dec_show_pango_window()
1114 font = font_names[current->pen_attributes.font_style]; in gst_cea708dec_show_pango_window()
1123 span_control.font_style = current->pen_attributes.font_style; in gst_cea708dec_show_pango_window()
1126 pen_size = pen_size_names[current->pen_attributes.pen_size]; in gst_cea708dec_show_pango_window()
1132 span_control.size = current->pen_attributes.pen_size; in gst_cea708dec_show_pango_window()
1136 span_control.font_style = current->pen_attributes.font_style; in gst_cea708dec_show_pango_window()
1137 span_control.size = current->pen_attributes.pen_size; in gst_cea708dec_show_pango_window()
1282 window->text[row][col].pen_attributes = window->pen_attributes; in gst_cea708dec_clear_window_text()
1311 window->text[row][col].pen_attributes = window->pen_attributes; in gst_cea708dec_scroll_window_up()
1355 window->pen_attributes.pen_size = PEN_SIZE_STANDARD; in gst_cea708dec_init_window()
1356 window->pen_attributes.font_style = FONT_STYLE_DEFAULT; in gst_cea708dec_init_window()
1357 window->pen_attributes.offset = PEN_OFFSET_NORMAL; in gst_cea708dec_init_window()
1358 window->pen_attributes.italics = FALSE; in gst_cea708dec_init_window()
1359 window->pen_attributes.text_tag = TAG_DIALOG; in gst_cea708dec_init_window()
1360 window->pen_attributes.underline = FALSE; in gst_cea708dec_init_window()
1361 window->pen_attributes.edge_type = EDGE_TYPE_NONE; in gst_cea708dec_init_window()
1404 window->pen_attributes.pen_size = dtvcc_buffer[index] & 0x3; in gst_cea708dec_set_pen_attributes()
1405 window->pen_attributes.text_tag = (dtvcc_buffer[index] & 0xF0) >> 4; in gst_cea708dec_set_pen_attributes()
1406 window->pen_attributes.offset = (dtvcc_buffer[index] & 0xC0) >> 2; in gst_cea708dec_set_pen_attributes()
1407 window->pen_attributes.font_style = dtvcc_buffer[index + 1] & 0x7; in gst_cea708dec_set_pen_attributes()
1408 window->pen_attributes.italics = in gst_cea708dec_set_pen_attributes()
1410 window->pen_attributes.underline = in gst_cea708dec_set_pen_attributes()
1412 window->pen_attributes.edge_type = (dtvcc_buffer[index + 1] & 0x38) >> 3; in gst_cea708dec_set_pen_attributes()
1415 window->pen_attributes.pen_size, in gst_cea708dec_set_pen_attributes()
1416 window->pen_attributes.font_style, in gst_cea708dec_set_pen_attributes()
1417 window->pen_attributes.text_tag, window->pen_attributes.offset); in gst_cea708dec_set_pen_attributes()
1420 window->pen_attributes.italics, in gst_cea708dec_set_pen_attributes()
1421 window->pen_attributes.underline, window->pen_attributes.edge_type); in gst_cea708dec_set_pen_attributes()
1741 window->text[pen_row][pen_col].pen_attributes = window->pen_attributes; in gst_cea708dec_window_add_char()