[FFmpeg-cvslog] r15550 - trunk/libavcodec/msmpeg4.c
lu_zero
subversion
Sat Oct 4 11:43:12 CEST 2008
Author: lu_zero
Date: Sat Oct 4 11:43:11 2008
New Revision: 15550
Log:
Mark the ff_find_best_tables symbol static to msmpeg4. Patch by Diego Petten?
Modified:
trunk/libavcodec/msmpeg4.c
Modified: trunk/libavcodec/msmpeg4.c
==============================================================================
--- trunk/libavcodec/msmpeg4.c (original)
+++ trunk/libavcodec/msmpeg4.c Sat Oct 4 11:43:11 2008
@@ -238,7 +238,7 @@ static int get_size_of_code(MpegEncConte
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
/* 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);
More information about the ffmpeg-cvslog
mailing list