Commit 4d11030c authored by stefano's avatar stefano

Remove definition of match_ext(), which is declared under #ifdef

AV_HAVE_AVCONFIG and so not publicly declared, and currently unused.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22353 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e51ded31
...@@ -1392,13 +1392,6 @@ int ff_url_join(char *str, int size, const char *proto, ...@@ -1392,13 +1392,6 @@ int ff_url_join(char *str, int size, const char *proto,
const char *authorization, const char *hostname, const char *authorization, const char *hostname,
int port, const char *fmt, ...); int port, const char *fmt, ...);
#if LIBAVFORMAT_VERSION_MAJOR < 53
/**
* @deprecated Use av_match_ext() instead.
*/
attribute_deprecated int match_ext(const char *filename, const char *extensions);
#endif
/** /**
* Returns a positive value if the given filename has one of the given * Returns a positive value if the given filename has one of the given
* extensions, 0 otherwise. * extensions, 0 otherwise.
......
...@@ -142,13 +142,6 @@ void av_register_output_format(AVOutputFormat *format) ...@@ -142,13 +142,6 @@ void av_register_output_format(AVOutputFormat *format)
format->next = NULL; format->next = NULL;
} }
#if LIBAVFORMAT_VERSION_MAJOR < 53
int match_ext(const char *filename, const char *extensions)
{
return av_match_ext(filename, extensions);
}
#endif
int av_match_ext(const char *filename, const char *extensions) int av_match_ext(const char *filename, const char *extensions)
{ {
const char *ext, *p; const char *ext, *p;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment