]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/mosaic.h
Revert [23438] because --enable-fast-install does the same.
[vlc] / modules / video_filter / mosaic.h
index 9b6d6cfd424b8e589175f24c938707948dea18b3..f17d28d4ae09038f1546e4e5ffd774748c97b94d 100644 (file)
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 typedef struct bridged_es_t
@@ -40,7 +40,7 @@ typedef struct bridge_t
 #define GetBridge(a) __GetBridge( VLC_OBJECT(a) )
 static bridge_t *__GetBridge( vlc_object_t *p_object )
 {
-    libvlc_t *p_libvlc = p_object->p_libvlc;
+    vlc_object_t *p_libvlc = VLC_OBJECT( p_object->p_libvlc );
     bridge_t *p_bridge;
     vlc_value_t val;
 
@@ -51,7 +51,7 @@ static bridge_t *__GetBridge( vlc_object_t *p_object )
     else
     {
         p_bridge = val.p_address;
-    }    
+    }
 
     return p_bridge;
 }