1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2024 Members of the Gmerlin project
* http://github.com/bplaum
*
* 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <string.h>
#include <avdec_private.h>
#if 0
#include <language_table.h>
static const int num_lang = sizeof(language_codes)/sizeof(language_codes[0]);
const char * bgav_lang_from_name(const char * name)
{
int i;
for(i = 0; i < num_lang; i++)
{
if(!strcmp(name, language_codes[i].name))
return language_codes[i].iso_639_b;
}
return NULL;
}
const char * bgav_lang_from_twocc(const char * twocc)
{
int i;
for(i = 0; i < num_lang; i++)
{
if(language_codes[i].iso_639_2 &&
(language_codes[i].iso_639_2[0] == twocc[0]) &&
(language_codes[i].iso_639_2[1] == twocc[1]))
return language_codes[i].iso_639_b;
}
return NULL;
}
const char * bgav_lang_name(const char * lang)
{
int i;
for(i = 0; i < num_lang; i++)
{
if(language_codes[i].iso_639_b &&
(language_codes[i].iso_639_b[0] == lang[0]) &&
(language_codes[i].iso_639_b[1] == lang[1]) &&
(language_codes[i].iso_639_b[2] == lang[2]))
return language_codes[i].name;
}
return NULL;
}
#endif
void bgav_correct_language(char * lang)
{
#if 0
int i;
char lang_save[4];
memcpy(lang_save, lang, 3);
lang_save[3] = '\0';
memset(lang, 0, 4);
for(i = 0; i < num_lang; i++)
{
if(language_codes[i].iso_639_b &&
!strcmp(language_codes[i].iso_639_b, lang_save))
{
memcpy(lang, language_codes[i].iso_639_b, 3);
break;
}
else if(language_codes[i].iso_639_t &&
language_codes[i].iso_639_b &&
!strcmp(language_codes[i].iso_639_t,lang_save ))
{
memcpy(lang, language_codes[i].iso_639_b, 3);
break;
}
}
#endif
const char * code = gavl_language_get_iso639_2_b_from_code(lang);
if(code)
strcpy(lang, code);
}
|