summaryrefslogtreecommitdiff
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-05-25 18:17:25 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-05-25 18:17:25 +0000
commit50071f0b4875e9d6969fb3fc474b0d7c7bf97dff (patch)
tree25e6ae7e75eea864e75716c0ee87d303539a4350 /libavcodec/utils.c
parent4df8ca9df2d960b9a112d60cdfd61d7f10f44cfa (diff)
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
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index df5aebb9ce..a45d57de00 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -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;