Changeset bbd1c26adf8f182b3a68bebfc43171c2ca50314b
- Timestamp:
- 01/28/08 17:44:02
(7 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1201538642 +0000
- git-parent:
[ba94a1b655983aa0dbfcb8a5d09436007a22b7df]
- git-author:
- Rafaël Carré <funman@videolan.org> 1201538642 +0000
- Message:
visual: removes warnings about unused parameters in vlc callback and Run() functions
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
rbbd1c26 |
|
| 46 | 46 | aout_buffer_t * p_buffer , picture_t * p_picture) |
|---|
| 47 | 47 | { |
|---|
| | 48 | VLC_UNUSED(p_effect); VLC_UNUSED(p_aout); VLC_UNUSED(p_buffer); |
|---|
| | 49 | VLC_UNUSED(p_picture); |
|---|
| 48 | 50 | return 0; |
|---|
| 49 | 51 | } |
|---|
| … | … | |
| 787 | 789 | aout_buffer_t * p_buffer , picture_t * p_picture) |
|---|
| 788 | 790 | { |
|---|
| | 791 | VLC_UNUSED(p_aout); |
|---|
| 789 | 792 | int i_index; |
|---|
| 790 | 793 | float *p_sample ; |
|---|
| r99fab90 |
rbbd1c26 |
|
| 425 | 425 | void *p_data ) |
|---|
| 426 | 426 | { |
|---|
| | 427 | VLC_UNUSED(psz_cmd); VLC_UNUSED(oldval); |
|---|
| | 428 | VLC_UNUSED(p_data); VLC_UNUSED(newval); |
|---|
| 427 | 429 | aout_filter_t *p_filter = (aout_filter_t *)p_this; |
|---|
| 428 | 430 | /* restart this baby */ |
|---|