Mercurial > libavcodec.hg
changeset 7994:ecade9a77827 libavcodec
Mark the ff_find_best_tables symbol static to msmpeg4. Patch by Diego Petten
author | lu_zero |
---|---|
date | Sat, 04 Oct 2008 09:43:11 +0000 |
parents | 2dfff0e25b47 |
children | 1fbfce20cb79 |
files | msmpeg4.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/msmpeg4.c Sat Oct 04 09:36:35 2008 +0000 +++ b/msmpeg4.c Sat Oct 04 09:43:11 2008 +0000 @@ -238,7 +238,7 @@ 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 @@ /* 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);