VLC 4.0.0-dev
module_config_t Struct Reference

Configuration item. More...

#include <vlc_configuration.h>

Collaboration diagram for module_config_t:
[legend]

Data Fields

uint8_t i_type
 Configuration type. More...
 
const char * psz_type
 Configuration subtype. More...
 
const char * psz_name
 Option name. More...
 
const char * psz_text
 Short comment on the configuration option. More...
 
const char * psz_longtext
 Long comment on the configuration option. More...
 
module_value_t value
 Current value. More...
 
module_value_t orig
 Default value. More...
 
module_value_t min
 Minimum value (for scalars only) More...
 
module_value_t max
 Maximum value (for scalars only) More...
 
uint16_t list_count
 Choices count. More...
 
union {
   const char **   psz
 Table of possible string choices. More...
 
   const int *   i
 Table of possible integer choices. More...
 
list
 Possible choices. More...
 
const char ** list_text
 Human-readable names for list values. More...
 

Detailed Description

Configuration item.

This is the internal reprensation of a configuration item. See also config_FindConfig().

Field Documentation

◆ i

const int* module_config_t::i

Table of possible integer choices.

Referenced by config_GetIntChoices(), vlc_plugin_desc_cb(), and vout_InitInterlacingSupport().

◆ i_type

◆ 

union { ... } module_config_t::list

◆ list_count

uint16_t module_config_t::list_count

◆ list_text

const char** module_config_t::list_text

◆ max

◆ min

◆ orig

◆ psz

const char** module_config_t::psz

Table of possible string choices.

Referenced by aout_New(), config_Free(), config_GetPszChoices(), vlc_plugin_desc_cb(), and vout_InitInterlacingSupport().

◆ psz_longtext

const char* module_config_t::psz_longtext

Long comment on the configuration option.

Referenced by print_item(), print_section(), and vlc_plugin_desc_cb().

◆ psz_name

const char* module_config_t::psz_name

◆ psz_text

const char* module_config_t::psz_text

Short comment on the configuration option.

Referenced by config_SaveConfigFile(), print_item(), print_section(), and vlc_plugin_desc_cb().

◆ psz_type

const char* module_config_t::psz_type

Configuration subtype.

Referenced by config_GetPszChoices(), and vlc_plugin_desc_cb().

◆ value


The documentation for this struct was generated from the following file: