* This header provides a portable threads implementation.
*****************************************************************************
* Copyright (C) 1999, 2002 VideoLAN
- * $Id: vlc_threads_funcs.h,v 1.6 2002/10/15 08:35:24 sam Exp $
+ * $Id: vlc_threads_funcs.h,v 1.7 2002/10/27 17:23:17 titer Exp $
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@via.ecp.fr>
return 0;
}
}
+ i_result = 0;
}
#endif
return 0;
}
}
+ i_result = 0;
}
#endif
* decoder.c: AAC decoder using libfaad2
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
- * $Id: decoder.c,v 1.8 2002/10/27 16:58:13 gbazin Exp $
+ * $Id: decoder.c,v 1.9 2002/10/27 17:23:17 titer Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
input_ExtractPES( p_adec->p_fifo, &p_pes );
if( !p_pes )
{
- p_vdec->p_framedata = NULL;
+ p_adec->p_framedata = NULL;
return;
}
}
static inline void __NextFrame( adec_thread_t *p_adec )
{
- input_ExtractPES( p_vdec->p_fifo, NULL );
+ input_ExtractPES( p_adec->p_fifo, NULL );
}