Changeset 5faadbd6cd9bcb3c72c38ad51b48bc117a60c094
- 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
| rfbb8255 |
r5faadbd |
|
| 57 | 57 | |
|---|
| 58 | 58 | #define DEFAULT_INPUT_ACTIVITY 1 |
|---|
| 59 | | #define DIRECTORY_ACTIVITY 100 |
|---|
| 60 | 59 | #define TRANSCODE_ACTIVITY 10 |
|---|
| 61 | 60 | |
|---|
| r33c1029 |
r5faadbd |
|
| 257 | 257 | false ); |
|---|
| 258 | 258 | |
|---|
| 259 | | i_activity = var_GetInteger( p_playlist, "activity" ); |
|---|
| 260 | | var_SetInteger( p_playlist, "activity", i_activity + |
|---|
| 261 | | DIRECTORY_ACTIVITY ); |
|---|
| 262 | | |
|---|
| 263 | 259 | ReadDir( p_playlist, psz_name, i_mode, p_current, p_item_in_category, |
|---|
| 264 | 260 | 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 ); |
|---|
| 269 | 261 | |
|---|
| 270 | 262 | playlist_Signal( p_playlist ); |
|---|