summaryrefslogtreecommitdiff
path: root/libavcodec/msmpeg4.c
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2008-10-04 09:43:11 +0000
committerLuca Barbato <lu_zero@gentoo.org>2008-10-04 09:43:11 +0000
commitcb92c528d9c88a95f99392996f20d2fd6ef8bdba (patch)
tree897aecd92dae70af1592f2ade37f35ba8acc9555 /libavcodec/msmpeg4.c
parentd9ec210baa644c4584222be27911cabf82b46cb1 (diff)
Mark the ff_find_best_tables symbol static to msmpeg4. Patch by Diego Pettenò
Originally committed as revision 15550 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r--libavcodec/msmpeg4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c
index 5165d25c88..5d76e9b5c6 100644
--- a/libavcodec/msmpeg4.c
+++ b/libavcodec/msmpeg4.c
@@ -238,7 +238,7 @@ static int get_size_of_code(MpegEncContext * s, RLTable *rl, int last, int run,
return size;
}
-void ff_find_best_tables(MpegEncContext * s)
+static void find_best_tables(MpegEncContext * s)
{
int i;
int best =-1, best_size =9999999;
@@ -308,7 +308,7 @@ void ff_find_best_tables(MpegEncContext * s)
/* write MSMPEG4 compatible frame header */
void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number)
{
- ff_find_best_tables(s);
+ find_best_tables(s);
align_put_bits(&s->pb);
put_bits(&s->pb, 2, s->pict_type - 1);