Commit ebcd06fd authored by Rocky Bernstein's avatar Rocky Bernstein

Some work towards get segments working again.

parent f0080eb7
This diff is collapsed.
...@@ -102,12 +102,12 @@ vlc_module_begin(); ...@@ -102,12 +102,12 @@ vlc_module_begin();
set_subcategory( SUBCAT_INPUT_ACCESS ); set_subcategory( SUBCAT_INPUT_ACCESS );
/* Configuration options */ /* Configuration options */
add_integer ( MODULE_STRING "-debug", 0, E_(DebugCallback), add_integer ( MODULE_STRING "-debug", 0, NULL,
N_("If nonzero, this gives additional debug information."), N_("If nonzero, this gives additional debug information."),
DEBUG_LONGTEXT, VLC_TRUE ); DEBUG_LONGTEXT, VLC_TRUE );
add_integer ( MODULE_STRING "-blocks-per-read", 20, add_integer ( MODULE_STRING "-blocks-per-read", 20,
E_(BlocksPerReadCallback), NULL,
N_("Number of CD blocks to get in a single read."), N_("Number of CD blocks to get in a single read."),
N_("Number of CD blocks to get in a single read."), N_("Number of CD blocks to get in a single read."),
VLC_TRUE ); VLC_TRUE );
......
...@@ -135,7 +135,10 @@ typedef struct thread_vcd_data_s ...@@ -135,7 +135,10 @@ typedef struct thread_vcd_data_s
unsigned int i_titles; /* # of navigatable titles. */ unsigned int i_titles; /* # of navigatable titles. */
input_title_t *p_title[CDIO_CD_MAX_TRACKS]; /*
# tracks + menu for segments + menu for LIDs
*/
input_title_t *p_title[CDIO_CD_MAX_TRACKS+2];
/* Probably gets moved into another structure...*/ /* Probably gets moved into another structure...*/
intf_thread_t *p_intf; intf_thread_t *p_intf;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment