Commit fe93476f authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* fix titer's language commit. The list needs to end with a NULL, or VLC will

  no longer start. (it fails on the duplication of the config of this variable)
parent 5251f813
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* libvlc.h: main libvlc header * libvlc.h: main libvlc header
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2002 VideoLAN * Copyright (C) 1998-2002 VideoLAN
* $Id: libvlc.h,v 1.64 2003/05/10 13:40:37 titer Exp $ * $Id: libvlc.h,v 1.65 2003/05/10 20:49:07 hartman Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
static char *ppsz_sout_acodec[] = { "", "mpeg1", "mpeg2", "mpeg4", "vorbis", NULL }; static char *ppsz_sout_acodec[] = { "", "mpeg1", "mpeg2", "mpeg4", "vorbis", NULL };
static char *ppsz_sout_vcodec[] = { "", "mpeg1", "mpeg2", "mpeg4", NULL }; static char *ppsz_sout_vcodec[] = { "", "mpeg1", "mpeg2", "mpeg4", NULL };
static char *ppsz_language[] = { "auto", "de", "en_GB", "fr", "it", static char *ppsz_language[] = { "auto", "de", "en_GB", "fr", "it",
"ja", "nl", "no", "pl", "ru", "sv" }; "ja", "nl", "no", "pl", "ru", "sv", NULL };
/***************************************************************************** /*****************************************************************************
* Configuration options for the main program. Each module will also separatly * Configuration options for the main program. Each module will also separatly
......
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