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
pull/126/head
Michael Niedermayer 21 years ago
parent 4df8ca9df2
commit 50071f0b48
  1. 2
      libavcodec/utils.c

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

Loading…
Cancel
Save