* iso_lang.c: function to decode language code (in dvd or a52 for instance).
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
- * $Id: iso_lang.c,v 1.5 2002/05/20 22:36:42 sam Exp $
+ * $Id: iso_lang.c,v 1.9 2003/08/17 20:39:08 fenrir Exp $
*
* Author: Stéphane Borel <stef@via.ecp.fr>
* Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr>
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*****************************************************************************/
#include <stdio.h>
-#include <videolan/vlc.h>
+#include <vlc/vlc.h>
#include "iso_lang.h"
static const iso639_lang_t p_languages[] =
{
-#include "iso-639.def"
+#include "iso-639_def.h"
{ NULL, NULL, NULL, NULL, NULL }
};
* DecodeLanguage: gives the long language name from the two-letter
* ISO-639 code
*****************************************************************************/
-const char * DecodeLanguage( u16 i_code )
+const char * DecodeLanguage( uint16_t i_code )
{
const iso639_lang_t * p_lang;
- u8 psz_code[3];
+ uint8_t psz_code[3];
psz_code[0] = i_code >> 8;
- psz_code[1] = i_code;
+ psz_code[1] = i_code & 0xff;
psz_code[2] = '\0';
for( p_lang = p_languages; p_lang->psz_eng_name; p_lang++ )
const iso639_lang_t * GetLang_2T( const char * psz_code )
{
const iso639_lang_t *p_lang;
-
+
for( p_lang = p_languages; p_lang->psz_eng_name; p_lang++ )
if( !strncmp( p_lang->psz_iso639_2T, psz_code, 3 ) )
return p_lang;