Skip to content

Commit

Permalink
swscale: Add prefix to updateMMXDitherTables()
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Niedermayer <[email protected]>
  • Loading branch information
michaelni committed Feb 27, 2015
1 parent 4d00860 commit ae20682
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libswscale/swscale.c
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ static int swscale(SwsContext *c, const uint8_t *src[],
break; // we can't output a dstY line so let's try with the next slice

#if HAVE_MMX_INLINE
updateMMXDitherTables(c, dstY, lumBufIndex, chrBufIndex,
ff_updateMMXDitherTables(c, dstY, lumBufIndex, chrBufIndex,
lastInLumBuf, lastInChrBuf);
#endif
if (should_dither) {
Expand Down
2 changes: 1 addition & 1 deletion libswscale/swscale_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ int ff_yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4],
void ff_yuv2rgb_init_tables_ppc(SwsContext *c, const int inv_table[4],
int brightness, int contrast, int saturation);

void updateMMXDitherTables(SwsContext *c, int dstY, int lumBufIndex, int chrBufIndex,
void ff_updateMMXDitherTables(SwsContext *c, int dstY, int lumBufIndex, int chrBufIndex,
int lastInLumBuf, int lastInChrBuf);

av_cold void ff_sws_init_range_convert(SwsContext *c);
Expand Down
2 changes: 1 addition & 1 deletion libswscale/x86/swscale.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ DECLARE_ALIGNED(8, const uint64_t, ff_w1111) = 0x0001000100010001ULL;
#include "swscale_template.c"
#endif

void updateMMXDitherTables(SwsContext *c, int dstY, int lumBufIndex, int chrBufIndex,
void ff_updateMMXDitherTables(SwsContext *c, int dstY, int lumBufIndex, int chrBufIndex,
int lastInLumBuf, int lastInChrBuf)
{
const int dstH= c->dstH;
Expand Down

0 comments on commit ae20682

Please sign in to comment.