Include dependency graph for udp.c:

Data Structures | |
| struct | sout_access_thread_t |
| struct | sout_access_out_sys_t |
Defines | |
| #define | MAX_EMPTY_BLOCKS 200 |
| #define | SOUT_CFG_PREFIX "sout-udp-" |
| #define | CACHING_TEXT N_("Caching value (ms)") |
| #define | CACHING_LONGTEXT |
| #define | GROUP_TEXT N_("Group packets") |
| #define | GROUP_LONGTEXT |
| #define | DEFAULT_PORT 1234 |
Functions | |
| static int | Open (vlc_object_t *) |
| static void | Close (vlc_object_t *) |
| int | vlc_entry__main (module_t *p_module) |
| const char * | vlc_entry_license__main (void) |
| static ssize_t | Write (sout_access_out_t *, block_t *) |
| static int | Seek (sout_access_out_t *, off_t) |
| static void * | ThreadWrite (vlc_object_t *) |
| static block_t * | NewUDPPacket (sout_access_out_t *, mtime_t) |
Variables | |
| static const char *const | ppsz_sout_options [] |
| static const char *const | ppsz_core_options [] |
| #define CACHING_LONGTEXT |
Value:
N_( \ "Default caching value for outbound UDP streams. This " \ "value should be set in milliseconds." )
| #define CACHING_TEXT N_("Caching value (ms)") |
| #define DEFAULT_PORT 1234 |
| #define GROUP_LONGTEXT |
Value:
N_("Packets can be sent one by one at the right time " \ "or by groups. You can choose the number " \ "of packets that will be sent at a time. It " \ "helps reducing the scheduling load on " \ "heavily-loaded systems." )
| #define GROUP_TEXT N_("Group packets") |
| #define MAX_EMPTY_BLOCKS 200 |
| #define SOUT_CFG_PREFIX "sout-udp-" |
| static void Close | ( | vlc_object_t * | ) | [static] |
| static block_t * NewUDPPacket | ( | sout_access_out_t * | , | |
| mtime_t | ||||
| ) | [static] |
| static int Open | ( | vlc_object_t * | ) | [static] |
| static int Seek | ( | sout_access_out_t * | , | |
| off_t | ||||
| ) | [static] |
| static void * ThreadWrite | ( | vlc_object_t * | ) | [static] |
| int vlc_entry__main | ( | module_t * | p_module | ) |
| const char* vlc_entry_license__main | ( | void | ) |
| static ssize_t Write | ( | sout_access_out_t * | , | |
| block_t * | ||||
| ) | [static] |
const char* const ppsz_core_options[] [static] |
Initial value:
{
"dscp",
"ttl",
"miface",
"miface-addr",
NULL
}
const char* const ppsz_sout_options[] [static] |
Initial value:
{
"caching",
"group",
NULL
}
1.5.1