~videolan/vlc/old-trunk

« back to all changes in this revision

Viewing changes to src/control/mediacontrol_core.c

  • Committer: zorglub
  • Date: 2006-09-24 12:40:10 UTC
  • Revision ID: vcs-imports@canonical.com-20060924124010-9313cccc4d61dbc9
Rename vlc_input_item_* functions to input_Item* for consistency
Add input_ItemAddOptionNoDup (unused at the moment)
+ free warning fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * core.c: Core functions : init, playlist, stream management
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2005 the VideoLAN team
5
 
 * $Id: mediacontrol_core.c 16780 2006-09-22 10:37:40Z oaubert $
 
5
 * $Id: mediacontrol_core.c 16821 2006-09-24 12:40:10Z zorglub $
6
6
 *
7
7
 * Authors: Olivier Aubert <olivier.aubert@liris.univ-lyon1.fr>
8
8
 *
249
249
 
250
250
            /* Set start time */
251
251
            snprintf( psz_from, 20, "start-time=%i", i_from );
252
 
            vlc_input_item_AddOption( p_playlist->status.p_item->p_input, psz_from );
 
252
            input_ItemAddOption( p_playlist->status.p_item->p_input, psz_from );
253
253
            free( psz_from );
254
254
        }
255
255