1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

static (inline) X => ff_X

patch by Denis Fortin: \fortin nerim net/
original thread: [FFmpeg-devel] [PATCH] wmv3 encoder : msmpeg4.c changes
date: 06/19/2007 09:54 PM

Originally committed as revision 9381 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Denis Fortin 2007-06-21 07:53:48 +00:00 committed by Benoit Fouet
parent b69378e295
commit c68a173ef3
2 changed files with 7 additions and 7 deletions

View File

@ -61,7 +61,7 @@
static uint32_t v2_dc_lum_table[512][2];
static uint32_t v2_dc_chroma_table[512][2];
static inline void msmpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n);
void ff_msmpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n);
static inline int msmpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
int n, int coded, const uint8_t *scantable);
static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr);
@ -247,7 +247,7 @@ static int get_size_of_code(MpegEncContext * s, RLTable *rl, int last, int run,
return size;
}
static void find_best_tables(MpegEncContext * s)
void ff_find_best_tables(MpegEncContext * s)
{
int i;
int best =-1, best_size =9999999;
@ -317,7 +317,7 @@ static void find_best_tables(MpegEncContext * s)
/* write MSMPEG4 compatible frame header */
void msmpeg4_encode_picture_header(MpegEncContext * s, int picture_number)
{
find_best_tables(s);
ff_find_best_tables(s);
align_put_bits(&s->pb);
put_bits(&s->pb, 2, s->pict_type - 1);
@ -534,7 +534,7 @@ void msmpeg4_encode_mb(MpegEncContext * s,
s->mv_bits += get_bits_diff(s);
for (i = 0; i < 6; i++) {
msmpeg4_encode_block(s, block[i], i);
ff_msmpeg4_encode_block(s, block[i], i);
}
s->p_tex_bits += get_bits_diff(s);
} else {
@ -593,7 +593,7 @@ void msmpeg4_encode_mb(MpegEncContext * s,
s->misc_bits += get_bits_diff(s);
for (i = 0; i < 6; i++) {
msmpeg4_encode_block(s, block[i], i);
ff_msmpeg4_encode_block(s, block[i], i);
}
s->i_tex_bits += get_bits_diff(s);
s->i_count++;
@ -852,7 +852,7 @@ static void msmpeg4_encode_dc(MpegEncContext * s, int level, int n, int *dir_ptr
/* Encoding of a block. Very similar to MPEG4 except for a different
escape coding (same as H263) and more vlc tables.
*/
static inline void msmpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n)
void ff_msmpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n)
{
int level, run, last, i, j, last_index;
int last_non_zero, sign, slevel;

View File

@ -261,7 +261,7 @@ void ff_wmv2_encode_mb(MpegEncContext * s,
}
for (i = 0; i < 6; i++) {
msmpeg4_encode_block(s, block[i], i);
ff_msmpeg4_encode_block(s, block[i], i);
}
}
#endif //CONFIG_WMV2_ENCODER