From 998257bd4f1343eb1020d1fbe333dd519597acc0 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 28 Feb 2010 01:51:13 +0000 Subject: [PATCH] Make mp4_read_descr static: It is only used inside libavformat/mov.c. Originally committed as revision 22097 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 7b475a94bc..3ff046b934 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -396,7 +396,7 @@ int ff_mp4_read_descr_len(ByteIOContext *pb) return len; } -int mp4_read_descr(AVFormatContext *fc, ByteIOContext *pb, int *tag) +static int mp4_read_descr(AVFormatContext *fc, ByteIOContext *pb, int *tag) { int len; *tag = get_byte(pb);