Skip to content
Snippets Groups Projects
Commit 50071f0b authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec_find is in no header file, and appearently not used or very usefull so...

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
parent 4df8ca9d
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment