Home
last modified time | relevance | path

Searched refs:psz_text (Results 26 – 50 of 81) sorted by relevance

1234

/dports/multimedia/vlc/vlc-3.0.16/modules/text_renderer/freetype/fonts/
H A Dwin32.c72 static char *Trim( char *psz_text ) in Trim() argument
76 int i_len = strlen( psz_text ); in Trim()
80 if( psz_text[i] != ' ') in Trim()
88 psz_text[ i_last_char + 1 ] = 0; in Trim()
89 if( i_first_char != -1 ) psz_text = psz_text + i_first_char; in Trim()
91 return psz_text; in Trim()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/webvtt/
H A Dwebvtt.h43 char *psz_text; member
55 free( c->psz_text ); in webvtt_cue_Clean()
H A Dwebvtt.c225 if( -1 < asprintf( &psz_merged, "%s\n%s", p->p_cue->psz_text, psz_line ) ) in webvtt_text_parser_Feed()
227 free( p->p_cue->psz_text ); in webvtt_text_parser_Feed()
228 p->p_cue->psz_text = psz_merged; in webvtt_text_parser_Feed()
252 p->p_cue->psz_text = p->reads[2]; in webvtt_text_parser_Feed()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/arib/
H A Dsubstext.h25 char *psz_text; member
99 r->p_text = text_segment_New( p_region->psz_text ); in SubpictureTextUpdate()
127 free( p_region->psz_text ); in SubpictureTextDestroy()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/
H A Dsubsdec.c490 if ( asprintf( &tmp, "%s%c", p_segment->psz_text ? p_segment->psz_text : "", c ) < 0 ) in AppendCharacter()
492 free( p_segment->psz_text ); in AppendCharacter()
493 p_segment->psz_text = tmp; in AppendCharacter()
500 if ( asprintf( &tmp, "%s%s", p_segment->psz_text ? p_segment->psz_text : "", psz_str ) < 0 ) in AppendString()
502 free( p_segment->psz_text ); in AppendString()
503 p_segment->psz_text = tmp; in AppendString()
H A Dcc.c1098 #define CAT(t) Eia608Strlcat( psz_text, t, i_text_max )
1113 char psz_text[i_text_max + 1]; in Eia608TextLine() local
1114 psz_text[0] = '\0'; in Eia608TextLine()
1156 EnsureUTF8(psz_text); in Eia608TextLine()
1157 p_segment->psz_text = strdup(psz_text); in Eia608TextLine()
1158 psz_text[0] = '\0'; in Eia608TextLine()
1203 assert(!p_segment->psz_text); // shouldn't happen in Eia608TextLine()
1204 EnsureUTF8(psz_text); in Eia608TextLine()
1205 p_segment->psz_text = strdup(psz_text); in Eia608TextLine()
H A Ddvbsub.c162 char *psz_text; /* for string of characters objects */ member
922 free( p_region->p_object_defs[--p_region->i_object_defs].psz_text ); in decode_region_composition()
983 p_obj->psz_text = NULL; in decode_region_composition()
1187 p_region->p_object_defs[i].psz_text = in decode_object()
1188 xrealloc( p_region->p_object_defs[i].psz_text, in decode_object()
1197 p_region->p_object_defs[i].psz_text[j] = 0; in decode_object()
1473 free( p_reg->p_object_defs[i].psz_text ); in free_all()
1650 if( ( p_object_def->i_type != 1 ) || !p_object_def->psz_text ) in render()
1663 p_spu_region->p_text = text_segment_New( p_object_def->psz_text ); in render()
2323 i_size = __MIN( strlen( p_region->p_text->psz_text ), 256 ); in encode_object()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/macosx/
H A DVLCExtensionsDialogProvider.m158 NSString *string = toNSStr(widget->psz_text);
167 if (!widget->psz_text)
171 NSString *string = toNSStr(widget->psz_text);
181 [button setTitle:toNSStr(widget->psz_text)];
193 … [[popup menu] addItemWithTitle:toNSStr(value->psz_text) action:nil keyEquivalent:@""];
212 toNSStr(value->psz_text), @"text",
224 NSString *string = widget->psz_text ? toNSStr(widget->psz_text) : nil;
316 free(widget->psz_text);
317 widget->psz_text = strdup([[field stringValue] UTF8String]);
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/qt/components/
H A Dpreferences_widgets.cpp217 label = new QLabel( p_item->psz_text ? qtr(p_item->psz_text) : "", _parent ); in StringConfigControl()
262 label = new QLabel( qtr(p_item->psz_text), p ); in FileConfigControl()
355 label = new QLabel( qtr(p_item->psz_text), p ); in FontConfigControl()
391 label = new QLabel( qtr(p_item->psz_text), p ); in StringListConfigControl()
518 label = new QLabel( qtr(p_item->psz_text), p ); in ModuleConfigControl()
597 if( !p_item->psz_text ) return; in ModuleListConfigControl()
758 label = new QLabel( qtr(p_item->psz_text), p ); in IntegerConfigControl()
860 label = new QLabel( qtr(p_item->psz_text), p ); in IntegerListConfigControl()
1000 label->setText( qtr(p_item->psz_text) ); in finish()
1043 label = new QLabel( qtr(p_item->psz_text), p ); in FloatConfigControl()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/spu/
H A Dsubsdelay.c217 static int SubsdelayGetTextRank( char *psz_text );
1185 i_rank = SubsdelayGetTextRank( p_entry->p_subpic->p_region->p_text->psz_text ); in SubsdelayEstimateDelay()
1267 static int SubsdelayGetTextRank( char *psz_text ) in SubsdelayGetTextRank() argument
1282 while ( psz_text[i] != '\0' ) in SubsdelayGetTextRank()
1284 c = psz_text[i]; in SubsdelayGetTextRank()
1293 if( psz_text[i] == '<' ) in SubsdelayGetTextRank()
1340 if ( strlen( p_segment->psz_text ) > 0 ) in SubsdelayIsTextEmpty()
1342 size_t offset = strspn( p_segment->psz_text, " " ); in SubsdelayIsTextEmpty()
1343 if ( p_segment->psz_text[offset] ) in SubsdelayIsTextEmpty()
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/mpeg/
H A Dts_si.c595 char *psz_text = EITConvertToUTF8( p_demux, in EITCallBack() local
598 if( psz_text ) in EITCallBack()
600 msg_Dbg( p_demux, " - text='%s'", psz_text ); in EITCallBack()
604 … size_t i_total = strlen( p_epgevt->psz_description ) + strlen( psz_text ) + 1; in EITCallBack()
609 strcat( psz_realloc, psz_text ); in EITCallBack()
611 free( psz_text ); in EITCallBack()
615 p_epgevt->psz_description = psz_text; in EITCallBack()
/dports/multimedia/vlc/vlc-3.0.16/modules/text_renderer/
H A Dnsspeechsynthesizer.m114 if ( !s->psz_text )
117 if (strlen(s->psz_text) == 0)
120 NSString *stringToSpeech = [NSString stringWithUTF8String:s->psz_text];
H A Dsvg.c317 char *psz_encoded = vlc_xml_encode( p_segment->psz_text ); in SegmentsToSVG()
365 if( p_region_in->p_text && strstr( p_region_in->p_text->psz_text, "<svg" ) ) in RenderText()
367 psz_svg = strdup( p_region_in->p_text->psz_text ); in RenderText()
/dports/multimedia/vlc/vlc-3.0.16/src/misc/
H A Dvariables.c82 char * psz_text; member
178 free( p_var->psz_text ); in Destroy()
307 p_var->psz_text = NULL; in var_Create()
602 free( p_var->psz_text ); in var_Change()
604 p_var->psz_text = strdup( p_val->psz_string ); in var_Change()
606 p_var->psz_text = NULL; in var_Change()
609 p_val->psz_string = p_var->psz_text ? strdup( p_var->psz_text ) in var_Change()
1334 if (var->psz_text != NULL) in DumpVariable()
1335 printf(", %s", var->psz_text); in DumpVariable()
/dports/multimedia/vlc/vlc-3.0.16/modules/control/
H A Dhotkeys.c1247 const char *psz_text = NULL; in PutAction() local
1252 psz_text = tlist.p_list->p_values[i].psz_string; in PutAction()
1257 psz_text ? psz_text : psz_mode ); in PutAction()
1272 const char *psz_text = NULL; in PutAction() local
1283 psz_text = tlist.p_list->p_values[i].psz_string; in PutAction()
1290 psz_text ? psz_text : psz_mode ); in PutAction()
1295 psz_text ? psz_text : psz_mode ); in PutAction()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/ttml/
H A Dsubsttml.c735 char *psz_text = NULL; in BIDIConvert() local
736 if( asprintf( &psz_text, "%s%s%s", p_bidi[i_direction].psz_uni_start, in BIDIConvert()
737 p_segment->psz_text, p_bidi[i_direction].psz_uni_end ) < 0 ) in BIDIConvert()
739 free( p_segment->psz_text ); in BIDIConvert()
740 p_segment->psz_text = psz_text; in BIDIConvert()
747 char *p = p_segment->psz_text; in StripSpacing()
809 p_segment = text_segment_New( p_ttnode->psz_text ); in AppendTextToRegion()
H A Dttml.c156 free( p_node->psz_text ); in tt_textnode_Delete()
196 static tt_textnode_t *tt_textnode_New( tt_node_t *p_parent, const char *psz_text ) in tt_textnode_New() argument
205 p_node->psz_text = strdup( psz_text ); in tt_textnode_New()
/dports/multimedia/vlc/vlc-3.0.16/src/video_output/
H A Dvideo_epg.c200 static text_segment_t * vout_OSDSegment(const char *psz_text, int size, uint32_t color) in vout_OSDSegment() argument
202 text_segment_t *p_segment = text_segment_New(psz_text); in vout_OSDSegment()
305 char *psz_text; in vout_OSDEpgEvent() local
306 if( -1 < asprintf(&psz_text, "%s-%s ", psz_start, psz_end)) in vout_OSDEpgEvent()
308 p_segment = vout_OSDSegment(psz_text, size, RGB_COLOR1); in vout_OSDEpgEvent()
/dports/multimedia/vlc/vlc-3.0.16/include/
H A Dvlc_extensions.h275 char *psz_text; ///< Text. May be NULL or modified by the UI member
281 char *psz_text; ///< String value member
/dports/multimedia/vlc/vlc-3.0.16/src/audio_output/
H A Dcommon.c229 void aout_FormatPrint( vlc_object_t *obj, const char *psz_text, in aout_FormatPrint() argument
232 msg_Dbg( obj, "%s '%4.4s' %d Hz %s frame=%d samples/%d bytes", psz_text, in aout_FormatPrint()
242 void aout_FormatsPrint( vlc_object_t *obj, const char * psz_text, in aout_FormatsPrint() argument
247 psz_text, in aout_FormatsPrint()
/dports/multimedia/vlc/vlc-3.0.16/src/config/
H A Dfile.c450 config_Write (file, p_item->psz_text, in config_SaveConfigFile()
460 config_Write (file, p_item->psz_text, N_("float"), in config_SaveConfigFile()
473 config_Write (file, p_item->psz_text, N_("string"), in config_SaveConfigFile()
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/
H A Dwebvtt.c103 const size_t paylsize = 8 + strlen( p_cue->psz_text ); in ConvertWEBVTT()
133 vlc_memstream_write( &stream, p_cue->psz_text, paylsize - 8 ); in ConvertWEBVTT()
186 p_sys->cues.p_array[p_sys->cues.i_count - 1].psz_text == NULL ) in ParserGetCueHandler()
213 if( p_cue->psz_text == NULL ) in ParserCueDoneHandler()
273 if( p_cue->psz_text ) in StreamParserCueDoneHandler()
/dports/multimedia/vlc/vlc-3.0.16/modules/text_renderer/freetype/
H A Dtext_layout.h83 const uni_char_t *psz_text, text_style_t **pp_styles,
/dports/graphics/mupdf/mupdf-1.18.0-source/source/fitz/
H A Dbidi-std.c1127 static int reorderLevel(fz_bidi_level level, uint32_t *psz_text, const fz_bidi_level *plevel, int c… in reorderLevel() argument
1143 ich += reorderLevel(level + 1, psz_text + ich, plevel + ich, in reorderLevel()
1149 reverse(psz_text, ich); in reorderLevel()
1154 int Bidi_reorder(fz_bidi_level baselevel, uint32_t *psz_text, const fz_bidi_level *plevel, int cch) in Bidi_reorder() argument
1160 ich += reorderLevel(baselevel, psz_text + ich, plevel + ich, in Bidi_reorder()
/dports/multimedia/vlc/vlc-3.0.16/test/src/misc/
H A Dkeystore.c223 const char *psz_text, const char *psz_default_username, in display_login_cb() argument
227 (void) psz_text; in display_login_cb()

1234