Commit cfa075f3 authored by michael's avatar michael

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 ...


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3157 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4409d33a
...@@ -574,7 +574,7 @@ AVCodec *avcodec_find_decoder_by_name(const char *name) ...@@ -574,7 +574,7 @@ AVCodec *avcodec_find_decoder_by_name(const char *name)
return NULL; return NULL;
} }
AVCodec *avcodec_find(enum CodecID id) static AVCodec *avcodec_find(enum CodecID id)
{ {
AVCodec *p; AVCodec *p;
p = first_avcodec; p = first_avcodec;
......
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