Changeset 5cc4255aa74f938e38cbdd9dcca4136475a4bc3f
- Timestamp:
- 04/06/08 13:14:12
(4 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1212578052 +0200
- git-parent:
[e259db6fefa6941b1a9cc2c01de8536c53b3ec01]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1212577006 +0200
- Message:
Fix a few compilation warnings.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r23293de |
r5cc4255 |
|
| 1601 | 1601 | static void held_objects_destroy (void *data) |
|---|
| 1602 | 1602 | { |
|---|
| | 1603 | VLC_UNUSED( data ); |
|---|
| 1603 | 1604 | held_list_t *hl = vlc_threadvar_get (&held_objects); |
|---|
| 1604 | 1605 | vlc_object_t *caller = vlc_threadobj (); |
|---|
| r218efb9 |
r5cc4255 |
|
| 379 | 379 | |
|---|
| 380 | 380 | /* Convert image to the first direct buffer */ |
|---|
| 381 | | p_vout->p_chroma->p_owner = (picture_t *)p_tmp_pic; |
|---|
| | 381 | p_vout->p_chroma->p_owner = (filter_owner_sys_t *)p_tmp_pic; |
|---|
| 382 | 382 | p_vout->p_chroma->pf_video_filter( p_vout->p_chroma, p_pic ); |
|---|
| 383 | 383 | |
|---|
| … | … | |
| 400 | 400 | |
|---|
| 401 | 401 | /* Convert image to the first direct buffer */ |
|---|
| 402 | | p_vout->p_chroma->p_owner = (picture_t *)&p_vout->p_picture[0]; |
|---|
| | 402 | p_vout->p_chroma->p_owner = (filter_owner_sys_t *)&p_vout->p_picture[0]; |
|---|
| 403 | 403 | p_vout->p_chroma->pf_video_filter( p_vout->p_chroma, p_pic ); |
|---|
| 404 | 404 | |
|---|
| … | … | |
| 927 | 927 | picture_t *p_dest, picture_t *p_src ) |
|---|
| 928 | 928 | { |
|---|
| | 929 | VLC_UNUSED( p_this ); |
|---|
| 929 | 930 | int i; |
|---|
| 930 | 931 | |
|---|