diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-10-04 09:43:11 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2008-10-04 09:43:11 +0000 |
commit | cb92c528d9c88a95f99392996f20d2fd6ef8bdba (patch) | |
tree | 897aecd92dae70af1592f2ade37f35ba8acc9555 | |
parent | d9ec210baa644c4584222be27911cabf82b46cb1 (diff) | |
download | ffmpeg-cb92c528d9c88a95f99392996f20d2fd6ef8bdba.tar.gz |
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
-rw-r--r-- | libavcodec/msmpeg4.c | 4 |
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); |