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
This commit is contained in:
Michael Niedermayer 2004-05-25 18:17:25 +00:00
parent 4df8ca9df2
commit 50071f0b48
1 changed files with 1 additions and 1 deletions

View File

@ -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;