Commit e6868a6a authored by Laurent Aimar's avatar Laurent Aimar

* ffmpeg.h: added missing fourcc.

 * araw.c: fixed a warning.
parent 80186f06
......@@ -2,7 +2,7 @@
* araw.c: Pseudo audio decoder; for raw pcm data
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: araw.c,v 1.12 2003/03/11 06:14:16 fenrir Exp $
* $Id: araw.c,v 1.13 2003/03/11 06:58:06 fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
......@@ -501,7 +501,7 @@ static void DecodeThread( adec_thread_t *p_adec )
{
int16_t *s = (int16_t*)p_aout_buffer->p_buffer;
int i;
unsigned int i;
for( i = 0; i < p_aout_buffer->i_nb_bytes; i++ )
{
......
......@@ -2,7 +2,7 @@
* ffmpeg_vdec.h: video decoder using ffmpeg library
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: ffmpeg.h,v 1.12 2003/02/18 19:42:57 gbazin Exp $
* $Id: ffmpeg.h,v 1.13 2003/03/11 06:58:06 fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
......@@ -154,3 +154,6 @@ int E_( GetPESData )( u8 *p_buf, int i_max, pes_packet_t *p_pes );
#define FOURCC_wma2 VLC_FOURCC('w','m','a','2')
#define FOURCC_dvau VLC_FOURCC('d','v','a','u')
#define FOURCC_MAC3 VLC_FOURCC('M','A','C','3')
#define FOURCC_MAC6 VLC_FOURCC('M','A','C','6')
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