Changeset 3503ab25515909d273d425f6f5f3bd3074f2cfe2
- Timestamp:
- 01/28/08 18:01:48
(7 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1201539708 +0000
- git-parent:
[689dd889dee2ea43e8a7cb64ccec0b923a8a60bd]
- git-author:
- Rafaël Carré <funman@videolan.org> 1201539708 +0000
- Message:
video_output: avoids unused parameter warnings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
r3503ab2 |
|
| 412 | 412 | static void Display( vout_thread_t *p_vout, picture_t *p_pic ) |
|---|
| 413 | 413 | { |
|---|
| | 414 | VLC_UNUSED(p_pic); |
|---|
| 414 | 415 | caca_refresh_display( p_vout->p_sys->p_dp ); |
|---|
| 415 | 416 | } |
|---|
| r99fab90 |
r3503ab2 |
|
| 340 | 340 | static void End( vout_thread_t *p_vout ) |
|---|
| 341 | 341 | { |
|---|
| 342 | | } |
|---|
| | 342 | VLC_UNUSED(p_vout); |
|---|
| | 343 | } |
|---|