]> git.sesse.net Git - vlc/blobdiff - src/misc/iso_lang.c
Don't add MPEG-TS program data for programs that don't exist. Patch by Dnumgis. This...
[vlc] / src / misc / iso_lang.c
index 70d76db76d6c819899642649caeb53fe48096811..30c011b464050254722c3e5c3e8bec25a894fd2f 100644 (file)
@@ -1,17 +1,17 @@
 /*****************************************************************************
  * 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.4 2002/05/14 19:33:54 bozo Exp $
+ * Copyright (C) 1998-2004 the VideoLAN team
+ * $Id$
  *
- * Author: Stéphane Borel <stef@via.ecp.fr>
+ * Author: Stéphane Borel <stef@via.ecp.fr>
  *         Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr>
  *
  * This program is free software; you can redistribute it and/or modify
  * 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
@@ -19,7 +19,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
  *****************************************************************************/
 #include <stdio.h>
 
-#include <videolan/vlc.h>
+#include <vlc/vlc.h>
 
 #include "iso_lang.h"
 
 /*****************************************************************************
  * Local tables
  *****************************************************************************/
+#include "iso-639_def.h"
 
-static iso639_lang_t p_iso_languages[] =
-{
-#define DEFINE_LANGUAGE_CODE(engName, nativeName, iso1, iso2T, iso2B) \
-          { engName, nativeName, #iso1, #iso2T, #iso2B },
-    { "", "", "", "", "" },
-#include "iso-639.def"
-};
-
+static const iso639_lang_t unknown_language =
+    { "Unknown", "Unknown", "??", "???", "???" };
 
 /*****************************************************************************
- * DecodeLanguage: gives the long language name from the two-letters
+ * DecodeLanguage: gives the long language name from the two-letter
  *                 ISO-639 code
  *****************************************************************************/
-char * DecodeLanguage( u16 i_code )
+const char * DecodeLanguage( uint16_t i_code )
 {
-    u8 code[2];
-    iso639_lang_t * p_iso;
-    code[0] = i_code >> 8;
-    code[1] = i_code;
-    p_iso = GetLang_1( code );
-    if( p_iso )
+    const iso639_lang_t * p_lang;
+    uint8_t psz_code[3];
+
+    psz_code[0] = i_code >> 8;
+    psz_code[1] = i_code & 0xff;
+    psz_code[2] = '\0';
+
+    for( p_lang = p_languages; p_lang->psz_eng_name; p_lang++ )
     {
-        if( p_iso->psz_native_name[0] )
-            return p_iso->psz_native_name;
-        else
-            return p_iso->psz_eng_name;
+        if( !memcmp( p_lang->psz_iso639_1, psz_code, 2 ) )
+        {
+# if 0
+            if( *p_lang->psz_native_name )
+            {
+                return p_lang->psz_native_name;
+            }
+#endif
+
+            return _( p_lang->psz_eng_name );
+        }
     }
-    return p_iso_languages[sizeof( p_iso_languages ) /
-                           sizeof( iso639_lang_t ) - 1].psz_native_name;
-}
 
+    return _( "Unknown" );
+}
 
-iso639_lang_t * GetLang_1( const char * psz_iso639_1 )
+const iso639_lang_t * GetLang_1( const char * psz_code )
 {
-    unsigned int i;
-    for( i = 0; i < sizeof( p_iso_languages ) / sizeof( iso639_lang_t ); i++ )
-    {
-        if( !strncmp( p_iso_languages[i].psz_iso639_1, psz_iso639_1, 2 ) )
-            break;
-    }
-    if( i < sizeof( p_iso_languages ) / sizeof( iso639_lang_t ) )
-        return &p_iso_languages[i];
-    else
-        return NULL;
+    const iso639_lang_t *p_lang;
+
+    for( p_lang = p_languages; p_lang->psz_eng_name; p_lang++ )
+        if( !strncmp( p_lang->psz_iso639_1, psz_code, 2 ) )
+            return p_lang;
+
+    return &unknown_language;
 }
 
-iso639_lang_t * GetLang_2T( const char * psz_iso639_2T )
+const iso639_lang_t * GetLang_2T( const char * psz_code )
 {
-    unsigned int i;
-    for( i = 0; i < sizeof( p_iso_languages ) / sizeof( iso639_lang_t ); i++ )
-    {
-        if( !strncmp( p_iso_languages[i].psz_iso639_2T, psz_iso639_2T, 2 ) )
-            break;
-    }
-    if( i < sizeof( p_iso_languages ) / sizeof( iso639_lang_t ) )
-        return &p_iso_languages[i];
-    else
-        return NULL;
+    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;
+
+    return &unknown_language;
 }
 
-iso639_lang_t * GetLang_2B( const char * psz_iso639_2B )
+const iso639_lang_t * GetLang_2B( const char * psz_code )
 {
-    unsigned int i;
-    for( i = 0; i < sizeof( p_iso_languages ) / sizeof( iso639_lang_t ); i++ )
-    {
-        if( !strncmp( p_iso_languages[i].psz_iso639_2B, psz_iso639_2B, 2 ) )
-            break;
-    }
-    if( i < sizeof( p_iso_languages ) / sizeof( iso639_lang_t ) )
-        return &p_iso_languages[i];
-    else
-        return NULL;
+    const iso639_lang_t *p_lang;
+
+    for( p_lang = p_languages; p_lang->psz_eng_name; p_lang++ )
+        if( !strncmp( p_lang->psz_iso639_2B, psz_code, 3 ) )
+            return p_lang;
+
+    return &unknown_language;
 }