From: Rocky Bernstein Date: Mon, 15 Mar 2004 00:03:56 +0000 (+0000) Subject: Fill out VCD information Media Info section when playing an entire VCD X-Git-Tag: 0.7.2~661 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=33b7101c5c9dca24146742a7437cda34c2b1b060;p=vlc Fill out VCD information Media Info section when playing an entire VCD or PBC is on. --- diff --git a/modules/access/vcdx/access.c b/modules/access/vcdx/access.c index 79c5c85124..8fecd95091 100644 --- a/modules/access/vcdx/access.c +++ b/modules/access/vcdx/access.c @@ -1376,8 +1376,6 @@ VCDFixupPlayList( input_thread_t *p_input, thread_vcd_data_t *p_vcd, return -1; } - InformationCreate( p_input ); - if ( play_single_item ) { /* May fill out more information when the playlist user interface becomes @@ -1576,8 +1574,11 @@ E_(Open) ( vlc_object_t *p_this ) p_vcd->p_intf->b_block = VLC_FALSE; intf_RunThread( p_vcd->p_intf ); + InformationCreate( p_input ); + if (play_single_item) - VCDFixupPlayList( p_input, p_vcd, psz_source, &itemid, play_single_item ); + VCDFixupPlayList( p_input, p_vcd, psz_source, &itemid, + play_single_item ); free( psz_source );