Commit 85f81858 authored by Eric Petit's avatar Eric Petit

avi.c: compile fix

parent b48dc524
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* avi.c : AVI file Stream input module for vlc * avi.c : AVI file Stream input module for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: avi.c,v 1.67 2003/11/16 00:08:02 fenrir Exp $ * $Id: avi.c,v 1.68 2003/11/16 15:51:59 titer Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -238,7 +238,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -238,7 +238,7 @@ static int Open( vlc_object_t * p_this )
for( i = 0 ; i < i_track; i++ ) for( i = 0 ; i < i_track; i++ )
{ {
avi_track_t *tk = malloc( sizeof( avi_track_t ) ); avi_track_t *tk = malloc( sizeof( avi_track_t ) );
avi_chunk_list_t *p_strl = AVI_ChunkFind( p_hdrl, AVIFOURCC_strl, i );; avi_chunk_list_t *p_strl = AVI_ChunkFind( p_hdrl, AVIFOURCC_strl, i );
avi_chunk_strh_t *p_strh = AVI_ChunkFind( p_strl, AVIFOURCC_strh, 0 ); avi_chunk_strh_t *p_strh = AVI_ChunkFind( p_strl, AVIFOURCC_strh, 0 );
avi_chunk_strf_auds_t *p_auds; avi_chunk_strf_auds_t *p_auds;
avi_chunk_strf_vids_t *p_vids; avi_chunk_strf_vids_t *p_vids;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment