diff options
author | Uoti Urpala <uoti.urpala@pp1.inet.fi> | 2008-08-02 17:32:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-08-02 17:32:55 +0000 |
commit | f769b746aa38840e75e46e801934302f4f3d026b (patch) | |
tree | 8c845c76c72202173266d44e66123181c1134d37 /libavcodec/i386/dsputil_mmx.c | |
parent | 5a4476e229748348b16b56a81e79e5c0422be4b9 (diff) | |
download | ffmpeg-f769b746aa38840e75e46e801934302f4f3d026b.tar.gz |
Mark add_png_paeth_prediction_* functions which are only used within this file
as static. patch by Uoti Urpala, uoti.urpala pp1.inet fi
Originally committed as revision 14509 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/dsputil_mmx.c')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 90865e80c7..81e2423595 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -788,7 +788,7 @@ static void draw_edges_mmx(uint8_t *buf, int wrap, int width, int height, int w) } #define PAETH(cpu, abs3)\ -void add_png_paeth_prediction_##cpu(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp)\ +static void add_png_paeth_prediction_##cpu(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp)\ {\ x86_reg i = -bpp;\ x86_reg end = w-3;\ |