Changeset 5faadbd6cd9bcb3c72c38ad51b48bc117a60c094

Show
Ignore:
Timestamp:
14/06/08 17:38:34 (6 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1213457914 +0200
git-parent:

[a0e351f5a791d05b4e38bf835064055d10730efc]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1213457914 +0200
Message:

Remove VLC_DIR_ACTIVITY, as it is not used.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_config.h

    rfbb8255 r5faadbd  
    5757 
    5858#define DEFAULT_INPUT_ACTIVITY 1 
    59 #define DIRECTORY_ACTIVITY 100 
    6059#define TRANSCODE_ACTIVITY 10 
    6160 
  • modules/access/directory.c

    r33c1029 r5faadbd  
    257257                                              false ); 
    258258 
    259     i_activity = var_GetInteger( p_playlist, "activity" ); 
    260     var_SetInteger( p_playlist, "activity", i_activity + 
    261                     DIRECTORY_ACTIVITY ); 
    262  
    263259    ReadDir( p_playlist, psz_name, i_mode, p_current, p_item_in_category, 
    264260             p_current_input, (DIR *)p_access->p_sys, NULL ); 
    265  
    266     i_activity = var_GetInteger( p_playlist, "activity" ); 
    267     var_SetInteger( p_playlist, "activity", i_activity - 
    268                     DIRECTORY_ACTIVITY ); 
    269261 
    270262    playlist_Signal( p_playlist );