diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-28 19:51:50 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-28 19:51:50 +0000 |
commit | 4b11e833b886045d89d4435fac5cf0b2275dc7e9 (patch) | |
tree | 010a5bf30da2c0e8f47086ba2814c264b68cb98d /libavformat/avlanguage.h | |
parent | e45aeb38a617ed378f34fb400a1015a5895bfc05 (diff) | |
download | ffmpeg-4b11e833b886045d89d4435fac5cf0b2275dc7e9.tar.gz |
Convert names to the FFmpeg style.
Originally committed as revision 18711 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avlanguage.h')
-rw-r--r-- | libavformat/avlanguage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avlanguage.h b/libavformat/avlanguage.h index a1d607eee1..eac0031455 100644 --- a/libavformat/avlanguage.h +++ b/libavformat/avlanguage.h @@ -24,7 +24,7 @@ /** * Known language codespaces */ -enum AV_LangCodespace { +enum AVLangCodespace { AV_LANG_ISO639_2_BIBL, /** 3-char bibliographic language codes as per ISO-IEC 639-2 */ AV_LANG_ISO639_2_TERM, /** 3-char terminologic language codes as per ISO-IEC 639-2 */ AV_LANG_ISO639_1 /** 2-char code of language as per ISO/IEC 639-1 */ @@ -34,6 +34,6 @@ enum AV_LangCodespace { * Converts a language code to a target codespace. The source codespace is guessed. * Returns NULL if the provided lang is null or invalid. */ -const char *av_convertLangTo(const char *lang, enum AV_LangCodespace targetCodespace); +const char *av_convert_lang_to(const char *lang, enum AVLangCodespace target_codespace); #endif /* AVFORMAT_AVLANGUAGE_H */ |