Home
last modified time | relevance | path

Searched refs:psz_end (Results 1 – 25 of 26) sorted by relevance

12

/dports/multimedia/vlc/vlc-3.0.16/src/config/
H A Dintf.c101 char *psz_end = psz_parser + i_len; in config_RemoveIntf() local
102 if( *psz_end == ':' ) psz_end++; in config_RemoveIntf()
104 if( asprintf( &psz_newconfig, "%s%s", psz_config, psz_end ) != -1 ) in config_RemoveIntf()
122 char *psz_end = psz_parser + i_len; in config_RemoveIntf() local
123 if( *psz_end == ':' ) psz_end++; in config_RemoveIntf()
125 if( asprintf( &psz_newconfig, "%s%s", psz_config, psz_end ) != -1 ) in config_RemoveIntf()
H A Dfile.c281 char psz_parent[strlen( psz_dirname ) + 1], *psz_end; in config_CreateDir() local
284 psz_end = strrchr( psz_parent, DIR_SEP_CHAR ); in config_CreateDir()
285 if( psz_end && psz_end != psz_parent ) in config_CreateDir()
287 *psz_end = '\0'; in config_CreateDir()
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/playlist/
H A Dasx.c370 const char* psz_end = strchr(psz_amp, ';'); in isXmlEncoded() local
371 if( psz_end == NULL ) in isXmlEncoded()
379 if( psz_ptr == psz_end ) in isXmlEncoded()
388 if( psz_ptr == psz_end ) in isXmlEncoded()
398 if( psz_ptr == psz_end ) in isXmlEncoded()
400 for ( ; psz_ptr < psz_end; psz_ptr++) in isXmlEncoded()
405 psz_str = psz_end; in isXmlEncoded()
413 if(psz_end == NULL) in memstream_puts_xmlencoded()
540 const char *psz_end = strstr( psz_xml, "?>" ); in detectXmlEncoding() local
541 if( psz_end == NULL ) in detectXmlEncoding()
[all …]
H A Dxspf.c708 char *psz_end = psz_element ? strdup(psz_element) : NULL;
733 b_ret &= (!name || !psz_end || !strcmp(psz_end, name));
735 free(psz_end);
/dports/multimedia/vlc/vlc-3.0.16/src/network/
H A Dhttp_auth.c53 const char *psz_end; in AuthGetParam() local
55 psz_end = strchr( psz_header, '"' ); in AuthGetParam()
56 if ( !psz_end ) /* Invalid since we should have a closing quote */ in AuthGetParam()
58 return strndup( psz_header, psz_end - psz_header ); in AuthGetParam()
73 const char *psz_end; in AuthGetParamNoQuotes() local
75 psz_end = strchr( psz_header, ',' ); in AuthGetParamNoQuotes()
78 if ( !psz_end ) /* Can be valid if this is the last parameter */ in AuthGetParamNoQuotes()
80 return strndup( psz_header, psz_end - psz_header ); in AuthGetParamNoQuotes()
294 const char *psz_end = strchr( psz_header, ' ' ); in vlc_http_auth_ParseWwwAuthenticateHeader() local
295 if ( psz_end ) in vlc_http_auth_ParseWwwAuthenticateHeader()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/spu/dynamicoverlay/
H A Ddynamicoverlay_commands.c107 if( *psz_end - *psz_command < count ) in parse_char()
117 char *psz_end, in parser_DataSharedMem() argument
155 static int parser_Id( char *psz_command, char *psz_end, in parser_Id() argument
158 VLC_UNUSED(psz_end); in parser_Id()
172 VLC_UNUSED(psz_end); in parser_None()
180 VLC_UNUSED(psz_end); in parser_SetAlpha()
199 VLC_UNUSED(psz_end); in parser_SetPosition()
224 VLC_UNUSED(psz_end); in parser_SetTextAlpha()
244 VLC_UNUSED(psz_end); in parser_SetTextColor()
277 VLC_UNUSED(psz_end); in parser_SetTextSize()
[all …]
H A Ddynamicoverlay.h75 typedef int (*parser_func_t)(char *psz_command, char *psz_end, commandparams_t *p_params );
/dports/multimedia/vlc/vlc-3.0.16/modules/spu/
H A Dmosaic.c246 char *psz_end = NULL; in mosaic_ParseSetOffsets() local
256 psz_offsets = psz_end + 1; in mosaic_ParseSetOffsets()
262 psz_offsets = psz_end + 1; in mosaic_ParseSetOffsets()
268 } while( psz_end ); in mosaic_ParseSetOffsets()
344 char *psz_end = NULL; in CreateFilter() local
348 psz_end = strchr( psz_order, ',' ); in CreateFilter()
354 psz_order = psz_end+1; in CreateFilter()
355 } while( psz_end ); in CreateFilter()
868 char *psz_end = NULL; in MosaicCallback() local
878 psz_order = psz_end+1; in MosaicCallback()
[all …]
H A Drss.c654 char *psz_end; in ParseUrls() local
658 psz_end = strchr( psz_urls, '|' ); in ParseUrls()
659 *psz_end = '\0'; in ParseUrls()
662 psz_end = psz_urls; in ParseUrls()
673 psz_urls = psz_end + 1; in ParseUrls()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/ttml/
H A Dttml.c110 char *psz_end = (char *) s; in tt_ParseTime() local
111 double v = us_strtod( s, &psz_end ); in tt_ParseTime()
112 if( psz_end != s && *psz_end ) in tt_ParseTime()
114 if( *psz_end == 'm' ) in tt_ParseTime()
116 if( *(psz_end + 1) == 's' ) in tt_ParseTime()
121 else if( *psz_end == 's' ) in tt_ParseTime()
125 else if( *psz_end == 'h' ) in tt_ParseTime()
129 else if( *psz_end == 'f' ) in tt_ParseTime()
H A Dsubsttml.c214 char* psz_end = NULL; in ttml_read_length() local
215 float size = us_strtof( psz, &psz_end ); in ttml_read_length()
217 if( psz_end ) in ttml_read_length()
219 if( *psz_end == 'c' || *psz_end == 'r' ) in ttml_read_length()
221 else if( *psz_end == '%' ) in ttml_read_length()
223 else if( *psz_end == 'p' && *(psz_end + 1) == 'x' ) in ttml_read_length()
379 char* psz_end = NULL; in FillTextStyle() local
380 int i_outline_width = strtol( token, &psz_end, 10 ); in FillTextStyle()
381 if( psz_end != token ) in FillTextStyle()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/
H A Dsubsusf.c842 char *psz_end = NULL; in ParseUSFString() local
848 psz_end = strcasestr( psz_subtitle, "</karaoke>" ); in ParseUSFString()
850 if( psz_end ) in ParseUSFString()
854 psz_end += strcspn( psz_end, ">" ) + 1; in ParseUSFString()
876 psz_end = strcasestr( psz_subtitle, "</image>" ); in ParseUSFString()
896 if( psz_content && ( psz_content < psz_end ) ) in ParseUSFString()
898 char *psz_filename = strndup( &psz_content[1], psz_end - &psz_content[1] ); in ParseUSFString()
907 if( psz_end ) psz_end += strcspn( psz_end, ">" ) + 1; in ParseUSFString()
929 psz_end = psz_subtitle + strlen( psz_subtitle ); in ParseUSFString()
951 if( psz_end ) in ParseUSFString()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/src/misc/
H A Dtext_style.c240 char* psz_end; in vlc_html_color() local
249 uint32_t i_value = strtol( psz_hex, &psz_end, 16 ); in vlc_html_color()
250 if( *psz_end == 0 || isspace( *psz_end ) ) in vlc_html_color()
252 switch( psz_end - psz_hex ) in vlc_html_color()
/dports/net/multicat/multicat-2.3/
H A Dutil.c343 char *psz_node, *psz_port = NULL, *psz_end; in ParseNodeService() local
352 psz_end = strchr( psz_node, ']' ); in ParseNodeService()
353 if ( psz_end == NULL ) in ParseNodeService()
359 *psz_end++ = '\0'; in ParseNodeService()
372 psz_end = strpbrk( psz_string, "@:,/" ); in ParseNodeService()
375 if ( psz_end != NULL && psz_end[0] == ':' ) in ParseNodeService()
377 *psz_end++ = '\0'; in ParseNodeService()
378 psz_port = psz_end; in ParseNodeService()
379 psz_end = strpbrk( psz_port, "@:,/" ); in ParseNodeService()
382 if ( psz_end != NULL ) in ParseNodeService()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/
H A Drawvid.c250 char *psz_end = strchr( psz_buf+1, ' ' ); in Open() local
251 if( psz_end ) in Open()
252 *psz_end = '\0'; in Open()
266 if( psz_end ) in Open()
267 *psz_end = ' '; in Open()
H A Dsubtitle.c1398 char *psz_end; in ParseSami() local
1399 i_start = strtol( s, &psz_end, 0 ); in ParseSami()
1400 s = psz_end; in ParseSami()
2133 char psz_end[12], psz_begin[12]; in ParseRealText() local
2137 psz_begin, psz_end, psz_text) != 3 ) && in ParseRealText()
2151 i_time = ParseRealTime( psz_end, &h2, &m2, &s2, &f2 ); in ParseRealText()
/dports/multimedia/vlc/vlc-3.0.16/modules/access/dvb/
H A Dscan_list.c185 char *psz_end = (char *) &psz_value[i_valuelen]; in scan_list_dvbv5_entry_fill() local
189 p_entry->i_freq = strtoll( psz_value, &psz_end, 10 ); in scan_list_dvbv5_entry_fill()
193 p_entry->i_bw = strtoll( psz_value, &psz_end, 10 ); in scan_list_dvbv5_entry_fill()
252 p_entry->i_rate = strtoll( psz_value, &psz_end, 10 ); in scan_list_dvbv5_entry_fill()
/dports/multimedia/vlc/vlc-3.0.16/src/text/
H A Dstrings.c208 char *psz_end; in vlc_xml_decode() local
212 cp = strtoul( psz_value + 3, &psz_end, 16 ); in vlc_xml_decode()
214 cp = strtoul( psz_value + 2, &psz_end, 10 ); in vlc_xml_decode()
216 if( *psz_end == ';' ) in vlc_xml_decode()
218 psz_value = psz_end + 1; in vlc_xml_decode()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/x11/
H A Dx11_dragdrop.cpp201 char* psz_end = strstr( psz_new, sep[i] ); in dndDrop() local
202 if( !psz_end ) in dndDrop()
204 *psz_end = '\0'; in dndDrop()
/dports/multimedia/vlc/vlc-3.0.16/src/audio_output/
H A Dcommon.c576 char *psz_end = strchr(p, ':'); in aout_ChangeFilterString() local
577 if( psz_end ) in aout_ChangeFilterString()
578 *psz_end++ = '\0'; in aout_ChangeFilterString()
580 psz_end = p + strlen(p); in aout_ChangeFilterString()
586 p = psz_end; in aout_ChangeFilterString()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/webvtt/
H A Dsubsvtt.c176 char *psz_end; in parse_percent() local
177 float d = us_strtof( psz, &psz_end ); in parse_percent()
178 if( d >= 0.0 && d <= 100.0 && *psz_end == '%' ) in parse_percent()
180 return psz_end != psz; in parse_percent()
185 char *psz_end; in parse_percent_tuple() local
186 float a = us_strtof( psz, &psz_end ); in parse_percent_tuple()
187 if( psz_end != psz && in parse_percent_tuple()
188 a >= 0.0 && a <= 100.0 && psz_end && *psz_end == '%' ) in parse_percent_tuple()
190 psz = strchr( psz_end, ',' ); in parse_percent_tuple()
194 if( psz_end != psz && in parse_percent_tuple()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/misc/addons/
H A Dfsstorage.c361 char psz_parent[strlen( psz_dirname ) + 1], *psz_end; in recursive_mkdir() local
364 psz_end = strrchr( psz_parent, DIR_SEP_CHAR ); in recursive_mkdir()
365 if( psz_end && psz_end != psz_parent ) in recursive_mkdir()
367 *psz_end = '\0'; in recursive_mkdir()
/dports/multimedia/vlc/vlc-3.0.16/src/video_output/
H A Dvideo_epg.c304 char *psz_end = vout_OSDPrintTime(p_evt->i_start + p_evt->i_duration); in vout_OSDEpgEvent() local
306 if( -1 < asprintf(&psz_text, "%s-%s ", psz_start, psz_end)) in vout_OSDEpgEvent()
314 free( psz_end ); in vout_OSDEpgEvent()
/dports/multimedia/vlc/vlc-3.0.16/modules/access/
H A Dlive555.cpp2291 char *psz_end; in ParseASF() local
2300 psz_end = strchr( psz_asf, '\n' ); in ParseASF()
2302 while( psz_end > psz_asf && ( *psz_end == '\n' || *psz_end == '\r' ) ) in ParseASF()
2303 *psz_end-- = '\0'; in ParseASF()
2305 if( psz_asf >= psz_end ) in ParseASF()
2312 p_header = block_Alloc( psz_end - psz_asf ); in ParseASF()
/dports/multimedia/vlc/vlc-3.0.16/src/input/
H A Dinput.c420 char *psz_parser, *psz_start, *psz_end; in Create() local
427 psz_end = strchr( psz_start, '}' ); in Create()
428 if( !psz_end ) break; in Create()
429 psz_parser = psz_end + 1; in Create()
432 *psz_end = ','; in Create()
439 while( (psz_end = strchr( psz_start, ',' ) ) ) in Create()
441 *psz_end = 0; in Create()
453 psz_start = psz_end + 1; in Create()
3152 char *psz_end = &psz_base[strlen(psz_base)-strlen(psz_match)]; in InputGetExtraFilesPattern() local
3153 assert( psz_end >= psz_base); in InputGetExtraFilesPattern()
[all …]

12