[FFmpeg-cvslog] avcodec/proresenc_anatoliy: simplify get()
Michael Niedermayer
git at videolan.org
Fri May 30 18:56:38 CEST 2014
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri May 30 18:43:22 2014 +0200| [82efa24c519acbd73c4b7ed07406ee0b4c8cf091] | committer: Michael Niedermayer
avcodec/proresenc_anatoliy: simplify get()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=82efa24c519acbd73c4b7ed07406ee0b4c8cf091
---
libavcodec/proresenc_anatoliy.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/libavcodec/proresenc_anatoliy.c b/libavcodec/proresenc_anatoliy.c
index f247a06..23323bb 100644
--- a/libavcodec/proresenc_anatoliy.c
+++ b/libavcodec/proresenc_anatoliy.c
@@ -264,14 +264,12 @@ static void encode_ac_coeffs(AVCodecContext *avctx, PutBitContext *pb,
static void get(uint8_t *pixels, int stride, int16_t* block)
{
- int16_t *p = (int16_t*)pixels;
int i;
- stride >>= 1;
for (i = 0; i < 8; i++) {
- AV_WN64(block, AV_RN64(p));
- AV_WN64(block+4, AV_RN64(p+4));
- p += stride;
+ AV_WN64(block, AV_RN64(pixels));
+ AV_WN64(block+4, AV_RN64(pixels+8));
+ pixels += stride;
block += 8;
}
}
More information about the ffmpeg-cvslog
mailing list