Browse Source

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
tags/v0.5
Diego Pettenò Luca Barbato 16 years ago
parent
commit
cb92c528d9
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/msmpeg4.c

+ 2
- 2
libavcodec/msmpeg4.c View File

@@ -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);


Loading…
Cancel
Save