annotate ffmpeg/libavcodec/hpel_template.c @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * Copyright (c) 2000, 2001 Fabrice Bellard
yading@10 3 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
yading@10 4 *
yading@10 5 * This file is part of FFmpeg.
yading@10 6 *
yading@10 7 * FFmpeg is free software; you can redistribute it and/or
yading@10 8 * modify it under the terms of the GNU Lesser General Public
yading@10 9 * License as published by the Free Software Foundation; either
yading@10 10 * version 2.1 of the License, or (at your option) any later version.
yading@10 11 *
yading@10 12 * FFmpeg is distributed in the hope that it will be useful,
yading@10 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 15 * Lesser General Public License for more details.
yading@10 16 *
yading@10 17 * You should have received a copy of the GNU Lesser General Public
yading@10 18 * License along with FFmpeg; if not, write to the Free Software
yading@10 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 20 */
yading@10 21
yading@10 22 #define DEF_HPEL(OPNAME, OP) \
yading@10 23 static inline void FUNCC(OPNAME ## _pixels2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h){\
yading@10 24 int i;\
yading@10 25 for(i=0; i<h; i++){\
yading@10 26 OP(*((pixel2*)(block )), AV_RN2P(pixels ));\
yading@10 27 pixels+=line_size;\
yading@10 28 block +=line_size;\
yading@10 29 }\
yading@10 30 }\
yading@10 31 static inline void FUNCC(OPNAME ## _pixels4)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h){\
yading@10 32 int i;\
yading@10 33 for(i=0; i<h; i++){\
yading@10 34 OP(*((pixel4*)(block )), AV_RN4P(pixels ));\
yading@10 35 pixels+=line_size;\
yading@10 36 block +=line_size;\
yading@10 37 }\
yading@10 38 }\
yading@10 39 static inline void FUNCC(OPNAME ## _pixels8)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h){\
yading@10 40 int i;\
yading@10 41 for(i=0; i<h; i++){\
yading@10 42 OP(*((pixel4*)(block )), AV_RN4P(pixels ));\
yading@10 43 OP(*((pixel4*)(block+4*sizeof(pixel))), AV_RN4P(pixels+4*sizeof(pixel)));\
yading@10 44 pixels+=line_size;\
yading@10 45 block +=line_size;\
yading@10 46 }\
yading@10 47 }\
yading@10 48 \
yading@10 49 static inline void FUNC(OPNAME ## _pixels8_l2)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, \
yading@10 50 int src_stride1, int src_stride2, int h){\
yading@10 51 int i;\
yading@10 52 for(i=0; i<h; i++){\
yading@10 53 pixel4 a,b;\
yading@10 54 a= AV_RN4P(&src1[i*src_stride1 ]);\
yading@10 55 b= AV_RN4P(&src2[i*src_stride2 ]);\
yading@10 56 OP(*((pixel4*)&dst[i*dst_stride ]), rnd_avg_pixel4(a, b));\
yading@10 57 a= AV_RN4P(&src1[i*src_stride1+4*sizeof(pixel)]);\
yading@10 58 b= AV_RN4P(&src2[i*src_stride2+4*sizeof(pixel)]);\
yading@10 59 OP(*((pixel4*)&dst[i*dst_stride+4*sizeof(pixel)]), rnd_avg_pixel4(a, b));\
yading@10 60 }\
yading@10 61 }\
yading@10 62 \
yading@10 63 static inline void FUNC(OPNAME ## _pixels4_l2)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, \
yading@10 64 int src_stride1, int src_stride2, int h){\
yading@10 65 int i;\
yading@10 66 for(i=0; i<h; i++){\
yading@10 67 pixel4 a,b;\
yading@10 68 a= AV_RN4P(&src1[i*src_stride1 ]);\
yading@10 69 b= AV_RN4P(&src2[i*src_stride2 ]);\
yading@10 70 OP(*((pixel4*)&dst[i*dst_stride ]), rnd_avg_pixel4(a, b));\
yading@10 71 }\
yading@10 72 }\
yading@10 73 \
yading@10 74 static inline void FUNC(OPNAME ## _pixels2_l2)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, \
yading@10 75 int src_stride1, int src_stride2, int h){\
yading@10 76 int i;\
yading@10 77 for(i=0; i<h; i++){\
yading@10 78 pixel4 a,b;\
yading@10 79 a= AV_RN2P(&src1[i*src_stride1 ]);\
yading@10 80 b= AV_RN2P(&src2[i*src_stride2 ]);\
yading@10 81 OP(*((pixel2*)&dst[i*dst_stride ]), rnd_avg_pixel4(a, b));\
yading@10 82 }\
yading@10 83 }\
yading@10 84 \
yading@10 85 static inline void FUNC(OPNAME ## _pixels16_l2)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, \
yading@10 86 int src_stride1, int src_stride2, int h){\
yading@10 87 FUNC(OPNAME ## _pixels8_l2)(dst , src1 , src2 , dst_stride, src_stride1, src_stride2, h);\
yading@10 88 FUNC(OPNAME ## _pixels8_l2)(dst+8*sizeof(pixel), src1+8*sizeof(pixel), src2+8*sizeof(pixel), dst_stride, src_stride1, src_stride2, h);\
yading@10 89 }\
yading@10 90 \
yading@10 91 CALL_2X_PIXELS(FUNCC(OPNAME ## _pixels16) , FUNCC(OPNAME ## _pixels8) , 8*sizeof(pixel))
yading@10 92
yading@10 93
yading@10 94 #define op_avg(a, b) a = rnd_avg_pixel4(a, b)
yading@10 95 #define op_put(a, b) a = b
yading@10 96
yading@10 97 DEF_HPEL(avg, op_avg)
yading@10 98 DEF_HPEL(put, op_put)
yading@10 99 #undef op_avg
yading@10 100 #undef op_put