diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-02-10 21:24:27 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-02-10 23:18:52 +0100 |
commit | 394d41ee30b0c4a38a8d33b65e28facfef15d465 (patch) | |
tree | e2cfb346d36450cd0f7fc86179a0eefd516f076f /libavcodec/pngdsp.h | |
parent | 3fe00cac71ed8d375c8e938c726f154d1b961c0e (diff) | |
download | ffmpeg-394d41ee30b0c4a38a8d33b65e28facfef15d465.tar.gz |
Partially revert "Fix png decoding on x86."
This partially reverts commit 58dabf7bf2fdd08f79173da0df613127ff783028.
It is no longer necessary to use unaligned mov.
The swapped mov argument fix remains though.
Diffstat (limited to 'libavcodec/pngdsp.h')
-rw-r--r-- | libavcodec/pngdsp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/pngdsp.h b/libavcodec/pngdsp.h index f89a93a45a..98d29a8a2f 100644 --- a/libavcodec/pngdsp.h +++ b/libavcodec/pngdsp.h @@ -26,8 +26,8 @@ typedef struct PNGDSPContext { void (*add_bytes_l2)(uint8_t *dst /* align 16 */, - uint8_t *src1, - uint8_t *src2, int w); + uint8_t *src1 /* align 16 */, + uint8_t *src2 /* align 16 */, int w); /* this might write to dst[w] */ void (*add_paeth_prediction)(uint8_t *dst, uint8_t *src, |