Browse Source

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
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
50071f0b48
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/utils.c

+ 1
- 1
libavcodec/utils.c 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;


Loading…
Cancel
Save