comparison avformat.h @ 5785:2e42bb81d80b libavformat

Remove definition of match_ext(), which is declared under #ifdef HAVE_AV_CONFIG_H and so not publicly declared, and currently unused.
author stefano
date Mon, 08 Mar 2010 23:51:53 +0000
parents 3126d2588595
children d605f589f0be
comparison
equal deleted inserted replaced
5784:28885ab1ef1c 5785:2e42bb81d80b
1390 */ 1390 */
1391 int ff_url_join(char *str, int size, const char *proto, 1391 int ff_url_join(char *str, int size, const char *proto,
1392 const char *authorization, const char *hostname, 1392 const char *authorization, const char *hostname,
1393 int port, const char *fmt, ...); 1393 int port, const char *fmt, ...);
1394 1394
1395 #if LIBAVFORMAT_VERSION_MAJOR < 53
1396 /**
1397 * @deprecated Use av_match_ext() instead.
1398 */
1399 attribute_deprecated int match_ext(const char *filename, const char *extensions);
1400 #endif
1401
1402 /** 1395 /**
1403 * Returns a positive value if the given filename has one of the given 1396 * Returns a positive value if the given filename has one of the given
1404 * extensions, 0 otherwise. 1397 * extensions, 0 otherwise.
1405 * 1398 *
1406 * @param extensions a comma-separated list of filename extensions 1399 * @param extensions a comma-separated list of filename extensions