From 50071f0b4875e9d6969fb3fc474b0d7c7bf97dff Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 25 May 2004 18:17:25 +0000 Subject: [PATCH] avcodec_find is in no header file, and appearently not used or very usefull so lets make it static ... Originally committed as revision 3157 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index df5aebb9ce..a45d57de00 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -574,7 +574,7 @@ AVCodec *avcodec_find_decoder_by_name(const char *name) return NULL; } -AVCodec *avcodec_find(enum CodecID id) +static AVCodec *avcodec_find(enum CodecID id) { AVCodec *p; p = first_avcodec;