
Data Structures | |
| struct | demux_sys_t |
Defines | |
| #define | INIT_EMU(type) |
Enumerations | |
| enum | EmuType_e { EMU_NSF = 0, EMU_GBS = 1, EMU_VGM = 2, EMU_SPC = 3, EMU_GYM = 4 } |
Functions | |
| static int | Open (vlc_object_t *) |
| Probes and initializes. | |
| static void | Close (vlc_object_t *) |
| Releases resources. | |
| int | vlc_entry__main (module_t *p_module) |
| const char * | vlc_entry_license__main (void) |
| static int | Demux (demux_t *p_demux) |
| static int | Control (demux_t *p_demux, int i_query, va_list args) |
Variables | |
| static const char * | type_str [] |
| static const char * | gme_ext [] |
| #define INIT_EMU | ( | type | ) |
| enum EmuType_e |
| static void Close | ( | vlc_object_t * | p_this | ) | [static] |
Releases resources.
Close the module.
Destroys the X11 window.
Disconnect from the X server.
Close a SDL video output.
It destroys an OpenGL vout display.
Terminate a vout display created by Open.
It destroyes a Direct3D vout display.
Terminate an output method created by Open.
Release the drawable.
Close a libcaca video output.
Close a aa video output method.
Close the filter.
Terminate a splitter module.
This function closes a clone video splitter module.
Common close function.
Releases allocate resources.
Close: Destructor.
| p_this | pointer to this filter object | |
| p_this,: | the filter object |
| static int Control | ( | demux_t * | p_demux, | |
| int | i_query, | |||
| va_list | args | |||
| ) | [static] |
References DEMUX_GET_FPS, DEMUX_GET_LENGTH, DEMUX_GET_META, DEMUX_GET_POSITION, DEMUX_GET_TIME, DEMUX_GET_TITLE_INFO, DEMUX_SET_TITLE, demux_sys_t::i_length, demux_sys_t::i_time, demux_t::i_title, demux_sys_t::i_tracks, demux_t::i_update, demux_t::info, INPUT_UPDATE_TITLE, msg_Dbg, demux_sys_t::p_meta, demux_sys_t::p_musicemu, demux_t::p_sys, strdup(), VLC_EGENERIC, vlc_input_title_New(), VLC_SUCCESS, and xmalloc().
| static int Demux | ( | demux_t * | p_demux | ) | [static] |
References es_format_t::audio, block_New, demux_sys_t::es, es_out_Control(), es_out_Send(), ES_OUT_SET_PCR, demux_sys_t::fmt, audio_format_t::i_bitspersample, block_t::i_buffer, audio_format_t::i_channels, block_t::i_dts, block_t::i_pts, audio_format_t::i_rate, demux_sys_t::i_time, demux_t::out, block_t::p_buffer, demux_sys_t::p_musicemu, demux_t::p_sys, and VLC_TS_0.
| static int Open | ( | vlc_object_t * | p_this | ) | [static] |
Probes and initializes.
Basic chorus/flanger/delay audio filter This implements a variable delay filter for VLC.
Todo:
Open the module.
Create an X11 window.
Probe the X server.
This function initializes SDL vout method.
It creates an OpenGL vout display.
This function allocates and initialize the DirectX vout display.
It creates a Direct3D vout display.
This function allocates and initializes a FB vout method.
Find the drawable set by libvlc application.
This function initializes libcaca vout method.
This function allocates and initializes a aa vout method.
This function allocates and initializes a Wall splitter module.
Open the filter.
This function allocates and initializes a Clone splitter module.
Open: initialize and create stuff.
Connect to the sftp server and ask for a file.
| p_this,: | the vlc_object |
| p_this | ||
| p_this,: | the filter object |
| int vlc_entry__main | ( | module_t * | p_module | ) |
| const char* vlc_entry_license__main | ( | void | ) |
const char* gme_ext[] [static] |
Initial value:
{
"nsf", "nsfe", "gbs", "vgm", "vgz", "spc", "gym", NULL
}
const char* type_str[] [static] |
Initial value:
{
"NSF (Nes)", "GBS (Gameboy)", "VGM (Master System/Game Gear/Genesis)", "SPC (Super Nes)", "GYM (Genesis)"
}
1.5.6