]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/avlanguage.h
Change ASF demuxer to return incomplete last packets.
[ffmpeg] / libavformat / avlanguage.h
index a1d607eee1f71bfafd33adcc387a0e5021eea49b..7fb8968810fb229522e00955d8f26a8e0d53f12d 100644 (file)
 /**
  * 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 */
 };
 
 /**
- * Converts a language code to a target codespace. The source codespace is guessed.
- * Returns NULL if the provided lang is null or invalid.
+ * Convert a language code to a target codespace. The source codespace is guessed.
+ * @return 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 */