* demux.c : Raw aac Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
- * $Id: demux.c,v 1.9 2003/05/14 14:58:35 fenrir Exp $
+ * $Id: demux.c,v 1.10 2003/05/14 21:29:42 fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
int i_skip;
int b_forced = VLC_FALSE;
- if( *p_input->psz_demux != NULL && !strncmp( p_input->psz_demux, "aac", 3 ) )
+ if( p_input->psz_demux && !strncmp( p_input->psz_demux, "aac", 3 ) )
{
- b_force = VLC_TRUE;
+ b_forced = VLC_TRUE;
}
else if( p_input->psz_name )
{
if( i_len > 4 && !strcasecmp( &p_input->psz_name[i_len - 4], ".aac" ) )
{
- b_force = VLC_TRUE;
+ b_forced = VLC_TRUE;
}
}
* libvlc.h: main libvlc header
*****************************************************************************
* Copyright (C) 1998-2002 VideoLAN
- * $Id: libvlc.h,v 1.65 2003/05/10 20:49:07 hartman Exp $
+ * $Id: libvlc.h,v 1.66 2003/05/14 21:29:43 fenrir Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
#define Nothing here, this is just to prevent update-po from being stupid
-static char *ppsz_sout_acodec[] = { "", "mpeg1", "mpeg2", "mpeg4", "vorbis", NULL };
-static char *ppsz_sout_vcodec[] = { "", "mpeg1", "mpeg2", "mpeg4", NULL };
+static char *ppsz_sout_acodec[] = { "", "mpga", "a52", NULL };
+static char *ppsz_sout_vcodec[] = { "", "mpgv", "mp4v", "DIV3", "h263", NULL };
+
static char *ppsz_language[] = { "auto", "de", "en_GB", "fr", "it",
"ja", "nl", "no", "pl", "ru", "sv", NULL };