Home
last modified time | relevance | path

Searched refs:psz_val (Results 1 – 20 of 20) sorted by last modified time

/dports/math/stanmath/math-4.2.0/lib/cpplint_1.4.5/samples/vlc-sample/src/
H A Dlibvlc.c127 char *psz_val; in libvlc_InternalInit() local
493 psz_val = var_InheritString( p_libvlc, "open" ); in libvlc_InternalInit()
494 if ( psz_val != NULL ) in libvlc_InternalInit()
496 intf_InsertItem( p_libvlc, psz_val, 0, NULL, 0 ); in libvlc_InternalInit()
497 free( psz_val ); in libvlc_InternalInit()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/
H A Dx264.c786 char *psz_val; in Open() local
1017 if( psz_val ) in Open()
1030 if( psz_val ) in Open()
1045 if( psz_val ) in Open()
1047 if( us_atof (psz_val) < 6 && us_atof (psz_val) > 0 ) in Open()
1050 else if( atoi(psz_val) >= 10 && atoi(psz_val) <= 51 ) in Open()
1112 free( psz_val ); in Open()
1134 free( psz_val ); in Open()
1138 if( psz_val && strcmp( psz_val, "hex" ) ) in Open()
1314 if( psz_val && *psz_val ) in Open()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/macosx/
H A Dprefs_widgets.m872 char *psz_val = [self stringValue];
873 config_PutPsz(getIntf(), psz_name, psz_val);
874 free(psz_val);
/dports/devel/cpplint/cpplint-1.5.5/samples/vlc-sample/src/
H A Dlibvlc.c127 char *psz_val; in libvlc_InternalInit() local
493 psz_val = var_InheritString( p_libvlc, "open" ); in libvlc_InternalInit()
494 if ( psz_val != NULL ) in libvlc_InternalInit()
496 intf_InsertItem( p_libvlc, psz_val, 0, NULL, 0 ); in libvlc_InternalInit()
497 free( psz_val ); in libvlc_InternalInit()
/dports/multimedia/vlc/vlc-3.0.16/src/input/
H A Ditem.c145 void input_item_SetMeta( input_item_t *p_i, vlc_meta_type_t meta_type, const char *psz_val ) in input_item_SetMeta() argument
150 vlc_meta_Set( p_i->p_meta, meta_type, psz_val ); in input_item_SetMeta()
H A Dmeta.c124 void vlc_meta_Set( vlc_meta_t *p_meta, vlc_meta_type_t meta_type, const char *psz_val ) in vlc_meta_Set() argument
127 assert( psz_val == NULL || IsUTF8( psz_val ) ); in vlc_meta_Set()
128 p_meta->ppsz_meta[meta_type] = psz_val ? strdup( psz_val ) : NULL; in vlc_meta_Set()
/dports/multimedia/vlc/vlc-3.0.16/src/
H A Dlibvlc.c117 char *psz_val; in libvlc_InternalInit() local
364 psz_val = var_InheritString( p_libvlc, "open" ); in libvlc_InternalInit()
365 if ( psz_val != NULL ) in libvlc_InternalInit()
367 intf_InsertItem( p_libvlc, psz_val, 0, NULL, 0 ); in libvlc_InternalInit()
368 free( psz_val ); in libvlc_InternalInit()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/avcodec/
H A Dencoder.c303 char *psz_val; in InitVideoEnc() local
435 if( psz_val && *psz_val ) in InitVideoEnc()
437 if( !strcmp( psz_val, "rd" ) ) in InitVideoEnc()
439 else if( !strcmp( psz_val, "bits" ) ) in InitVideoEnc()
441 else if( !strcmp( psz_val, "simple" ) ) in InitVideoEnc()
448 free( psz_val ); in InitVideoEnc()
465 if( psz_val && *psz_val ) in InitVideoEnc()
467 if( !strncmp( psz_val, "main", 4 ) ) in InitVideoEnc()
469 else if( !strncmp( psz_val, "low", 3 ) ) in InitVideoEnc()
480 else if( !strncmp( psz_val, "ld", 2 ) ) in InitVideoEnc()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/ttml/
H A Dttml.c235 char *psz_val = strdup( psz_value ); in tt_node_New() local
236 if( psz_val ) in tt_node_New()
238 vlc_dictionary_insert( &p_node->attr_dict, psz_key, psz_val ); in tt_node_New()
241 p_node->timings.begin = tt_ParseTime( psz_val ); in tt_node_New()
243 p_node->timings.end = tt_ParseTime( psz_val ); in tt_node_New()
245 p_node->timings.dur = tt_ParseTime( psz_val ); in tt_node_New()
247 p_node->timings.i_type = strcmp( psz_val, "seq" ) ? TT_TIMINGS_PARALLEL in tt_node_New()
H A Dsubsttml.c336 if( !strcasecmp ( "italic", psz_val ) || !strcasecmp ( "oblique", psz_val ) ) in FillTextStyle()
344 if( !strcasecmp ( "bold", psz_val ) ) in FillTextStyle()
364 char *value = strdup( psz_val ); in FillTextStyle()
430 if( !strcasecmp( "after", psz_val ) ) in FillRegionStyle()
440 if( ttml_read_coords( psz_val, &x, &y ) ) in FillRegionStyle()
490 if( !strcasecmp ( "left", psz_val ) ) in FillTTMLStyle()
512 if( !strcasecmp( "rtl", psz_val ) ) in FillTTMLStyle()
517 else if( !strcasecmp( "ltr", psz_val ) ) in FillTTMLStyle()
532 if( !strcasecmp( "rl", psz_val ) || !strcasecmp( "rltb", psz_val ) ) in FillTTMLStyle()
538 else if( !strcasecmp( "lr", psz_val ) || !strcasecmp( "lrtb", psz_val ) ) in FillTTMLStyle()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/access_output/
H A Dshout.c169 char *psz_val; in Open() local
253 psz_val = var_GetNonEmptyString( p_access, SOUT_CFG_PREFIX "bitrate" ); in Open()
254 if( psz_val ) in Open()
256 i_ret = shout_set_audio_info( p_shout, SHOUT_AI_BITRATE, psz_val ); in Open()
257 free( psz_val ); in Open()
277 if( psz_val ) in Open()
280 free( psz_val ); in Open()
289 if( psz_val ) in Open()
292 free( psz_val ); in Open()
301 if( psz_val ) in Open()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/include/
H A Dvlc_input_item.h260 VLC_API void input_item_SetMeta( input_item_t *, vlc_meta_type_t meta_type, const char *psz_val );
H A Dvlc_meta.h77 VLC_API void vlc_meta_Set( vlc_meta_t *p_meta, vlc_meta_type_t meta_type, const char *psz_val );
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/playlist/
H A Dwpl.c194 const char *psz_attr = NULL, *psz_val = NULL; in read_body() local
195 while ((psz_attr = xml_ReaderNextAttr( p_reader, &psz_val ))) in read_body()
197 if ( !psz_val || *psz_val == '\0' ) in read_body()
201 char* mrl = ProcessMRL( psz_val, p_demux->psz_url ); in read_body()
/dports/multimedia/vlc/vlc-3.0.16/modules/access/dshow/
H A Ddshow.cpp401 char *psz_val; in CommonOpen() local
413 if( psz_val ) in CommonOpen()
417 if ( strncasecmp( psz_val, "none", 4 ) != 0 ) in CommonOpen()
418 vdevname = std::string( psz_val ); in CommonOpen()
422 free( psz_val ); in CommonOpen()
425 if( psz_val ) in CommonOpen()
430 adevname = std::string( psz_val ); in CommonOpen()
434 free( psz_val ); in CommonOpen()
452 if( !EMPTY_STR(psz_val) ) in CommonOpen()
475 free( psz_val ); in CommonOpen()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/meta_engine/
H A DID3Meta.h120 const char *psz_val = ID3TextConv( &p_buf[i_len], i_buf - i_len, in ID3HandleTag() local
122 if( psz_val ) in ID3HandleTag()
124 vlc_meta_AddExtra( p_meta, psz_key, psz_val ); in ID3HandleTag()
/dports/multimedia/vlc/vlc-3.0.16/modules/text_renderer/freetype/fonts/
H A Dandroid.c56 const char *psz_val = NULL; in Android_ParseFont() local
63 if( !strcasecmp( "weight", psz_attr ) && psz_val && *psz_val ) in Android_ParseFont()
64 i_weight = atoi( psz_val ); in Android_ParseFont()
65 else if( !strcasecmp( "style", psz_attr ) && psz_val && *psz_val ) in Android_ParseFont()
75 if( i_type != XML_READER_TEXT || !psz_val || !*psz_val ) in Android_ParseFont()
106 if( !strcasecmp( "name", psz_attr ) && psz_val && *psz_val ) in Android_Nougat_ParseFamily()
108 psz_name = psz_val; in Android_Nougat_ParseFamily()
197 if( !strcasecmp( "weight", psz_attr ) && psz_val && *psz_val ) in Android_ParseAlias()
198 i_weight = atoi( psz_val ); in Android_ParseAlias()
199 else if( !strcasecmp( "to", psz_attr ) && psz_val && *psz_val ) in Android_ParseAlias()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/mpeg/
H A Des.c939 const char *psz_val = vlc_meta_GetExtra( p_meta, ppsz_keys[i] ); in ID3TAG_Parse_Handler() local
940 if( psz_val ) in ID3TAG_Parse_Handler()
941 *pf = us_atof( psz_val ); in ID3TAG_Parse_Handler()
/dports/multimedia/vlc/vlc-3.0.16/modules/access/dvb/
H A Dscan_list.c166 char *psz_val = strndup(psz_value, i_valuelen);\
167 if( psz_val )\
169 variable = parser( psz_val );\
170 free( psz_val );\
/dports/graphics/tgif/tgif-QPL-4.2.5/
H A Dhash.c223 int HashStoreStr(p_hash, psz_key, key_sz, psz_val) in HashStoreStr() argument
225 char *psz_key, *psz_val;
230 HashData *phd=NewStrHashData(psz_key, key_sz, psz_val);