Changeset 5cc4255aa74f938e38cbdd9dcca4136475a4bc3f

Show
Ignore:
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
  • src/misc/objects.c

    r23293de r5cc4255  
    16011601static void held_objects_destroy (void *data) 
    16021602{ 
     1603    VLC_UNUSED( data ); 
    16031604    held_list_t *hl = vlc_threadvar_get (&held_objects); 
    16041605    vlc_object_t *caller = vlc_threadobj (); 
  • src/video_output/vout_pictures.c

    r218efb9 r5cc4255  
    379379 
    380380        /* 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; 
    382382        p_vout->p_chroma->pf_video_filter( p_vout->p_chroma, p_pic ); 
    383383 
     
    400400 
    401401        /* 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]; 
    403403        p_vout->p_chroma->pf_video_filter( p_vout->p_chroma, p_pic ); 
    404404 
     
    927927                         picture_t *p_dest, picture_t *p_src ) 
    928928{ 
     929    VLC_UNUSED( p_this ); 
    929930    int i; 
    930931