]> git.sesse.net Git - vlc/blobdiff - include/vlc_fourcc.h
Added a small vlc_fourcc_GetCodecFromString helper.
[vlc] / include / vlc_fourcc.h
index c212f279f319dfbec4265595f9ea53e08e4e8c34..3a1e8a6d6febe78f378edbca2b6d2943e9636bdc 100644 (file)
 #define VLC_CODEC_MP3       VLC_FOURCC('m','p','3',' ')
 
 /**
- * It returns the codec associatedto a fourcc within a ES category.
+ * It returns the codec associated to a fourcc within a ES category.
  *
  * If not found, it will return the given fourcc.
  * If found, it will allways be one of the VLC_CODEC_ defined above.
  */
 VLC_EXPORT( vlc_fourcc_t, vlc_fourcc_GetCodec, ( int i_cat, vlc_fourcc_t i_fourcc ) );
 
+/**
+ * It returns the codec associated to a fourcc store in a zero terminated
+ * string.
+ *
+ * If the string is NULL or does not have exactly 4 charateres, it will
+ * return 0, otherwise it behaves like vlc_fourcc_GetCodec.
+ *
+ * Provided for convenience.
+ */
+VLC_EXPORT( vlc_fourcc_t, vlc_fourcc_GetCodecFromString, ( int i_cat, const char * ) );
+
 /**
  * It returns the description of the given fourcc or NULL if not found.
  *