Changeset e70bce6cf627880d284f012bd570b73df9c6d4e8

Show
Ignore:
Timestamp:
01/19/08 13:35:35 (7 months ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1200746135 +0000
git-parent:

[61fc0c2faabf6c6216721c0a1c55839b9b16eea0]

git-author:
Antoine Cellerier <dionoea@videolan.org> 1200746135 +0000
Message:

Simplify.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/video_filter/mosaic.h

    r4c4c105 re70bce6  
    22 * mosaic.h: 
    33 ***************************************************************************** 
    4  * Copyright (C) 2004-2005 the VideoLAN team 
     4 * Copyright (C) 2004-2008 the VideoLAN team 
    55 * $Id$ 
    66 * 
     
    4242{ 
    4343    vlc_object_t *p_libvlc = VLC_OBJECT( p_object->p_libvlc ); 
    44     bridge_t *p_bridge; 
    4544    vlc_value_t val; 
    4645 
    4746    if( var_Get( p_libvlc, "mosaic-struct", &val ) != VLC_SUCCESS ) 
    4847    { 
    49         p_bridge = NULL; 
     48        return NULL; 
    5049    } 
    5150    else 
    5251    { 
    53         p_bridge = val.p_address; 
     52        return val.p_address; 
    5453    } 
    55  
    56     return p_bridge; 
    5754} 
    5855