| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * H.26L/H.264/AVC/JVT/14496-10/... encoder/decoder | ||
| 3 | * Copyright (c) 2003-2011 Michael Niedermayer <michaelni@gmx.at> | ||
| 4 | * | ||
| 5 | * This file is part of FFmpeg. | ||
| 6 | * | ||
| 7 | * FFmpeg is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU Lesser General Public | ||
| 9 | * License as published by the Free Software Foundation; either | ||
| 10 | * version 2.1 of the License, or (at your option) any later version. | ||
| 11 | * | ||
| 12 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * Lesser General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU Lesser General Public | ||
| 18 | * License along with FFmpeg; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 20 | */ | ||
| 21 | |||
| 22 | /** | ||
| 23 | * @file | ||
| 24 | * H.264 / AVC / MPEG-4 part10 DSP functions. | ||
| 25 | * @author Michael Niedermayer <michaelni@gmx.at> | ||
| 26 | */ | ||
| 27 | |||
| 28 | #include "bit_depth_template.c" | ||
| 29 | |||
| 30 | #define op_scale1(x) block[x] = av_clip_pixel( (block[x]*weight + offset) >> log2_denom ) | ||
| 31 | #define op_scale2(x) dst[x] = av_clip_pixel( (src[x]*weights + dst[x]*weightd + offset) >> (log2_denom+1)) | ||
| 32 | #define H264_WEIGHT(W) \ | ||
| 33 | static void FUNCC(weight_h264_pixels ## W)(uint8_t *_block, ptrdiff_t stride, int height, \ | ||
| 34 | int log2_denom, int weight, int offset) \ | ||
| 35 | { \ | ||
| 36 | int y; \ | ||
| 37 | pixel *block = (pixel*)_block; \ | ||
| 38 | stride >>= sizeof(pixel)-1; \ | ||
| 39 | offset = (unsigned)offset << (log2_denom + (BIT_DEPTH-8)); \ | ||
| 40 | if(log2_denom) offset += 1<<(log2_denom-1); \ | ||
| 41 | for (y = 0; y < height; y++, block += stride) { \ | ||
| 42 | op_scale1(0); \ | ||
| 43 | op_scale1(1); \ | ||
| 44 | if(W==2) continue; \ | ||
| 45 | op_scale1(2); \ | ||
| 46 | op_scale1(3); \ | ||
| 47 | if(W==4) continue; \ | ||
| 48 | op_scale1(4); \ | ||
| 49 | op_scale1(5); \ | ||
| 50 | op_scale1(6); \ | ||
| 51 | op_scale1(7); \ | ||
| 52 | if(W==8) continue; \ | ||
| 53 | op_scale1(8); \ | ||
| 54 | op_scale1(9); \ | ||
| 55 | op_scale1(10); \ | ||
| 56 | op_scale1(11); \ | ||
| 57 | op_scale1(12); \ | ||
| 58 | op_scale1(13); \ | ||
| 59 | op_scale1(14); \ | ||
| 60 | op_scale1(15); \ | ||
| 61 | } \ | ||
| 62 | } \ | ||
| 63 | static void FUNCC(biweight_h264_pixels ## W)(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride, int height, \ | ||
| 64 | int log2_denom, int weightd, int weights, int offset) \ | ||
| 65 | { \ | ||
| 66 | int y; \ | ||
| 67 | pixel *dst = (pixel*)_dst; \ | ||
| 68 | pixel *src = (pixel*)_src; \ | ||
| 69 | stride >>= sizeof(pixel)-1; \ | ||
| 70 | offset = (unsigned)offset << (BIT_DEPTH-8); \ | ||
| 71 | offset = (unsigned)((offset + 1) | 1) << log2_denom; \ | ||
| 72 | for (y = 0; y < height; y++, dst += stride, src += stride) { \ | ||
| 73 | op_scale2(0); \ | ||
| 74 | op_scale2(1); \ | ||
| 75 | if(W==2) continue; \ | ||
| 76 | op_scale2(2); \ | ||
| 77 | op_scale2(3); \ | ||
| 78 | if(W==4) continue; \ | ||
| 79 | op_scale2(4); \ | ||
| 80 | op_scale2(5); \ | ||
| 81 | op_scale2(6); \ | ||
| 82 | op_scale2(7); \ | ||
| 83 | if(W==8) continue; \ | ||
| 84 | op_scale2(8); \ | ||
| 85 | op_scale2(9); \ | ||
| 86 | op_scale2(10); \ | ||
| 87 | op_scale2(11); \ | ||
| 88 | op_scale2(12); \ | ||
| 89 | op_scale2(13); \ | ||
| 90 | op_scale2(14); \ | ||
| 91 | op_scale2(15); \ | ||
| 92 | } \ | ||
| 93 | } | ||
| 94 | |||
| 95 |
4/4✓ Branch 0 taken 3795521 times.
✓ Branch 1 taken 684831 times.
✓ Branch 2 taken 9641288 times.
✓ Branch 3 taken 637210 times.
|
28243280 | H264_WEIGHT(16) |
| 96 |
4/4✓ Branch 0 taken 4447996 times.
✓ Branch 1 taken 557167 times.
✓ Branch 2 taken 3599408 times.
✓ Branch 3 taken 479898 times.
|
17209142 | H264_WEIGHT(8) |
| 97 |
4/4✓ Branch 0 taken 1280546 times.
✓ Branch 1 taken 152924 times.
✓ Branch 2 taken 3124080 times.
✓ Branch 3 taken 699838 times.
|
9115100 | H264_WEIGHT(4) |
| 98 |
4/4✓ Branch 0 taken 642584 times.
✓ Branch 1 taken 98228 times.
✓ Branch 2 taken 1261776 times.
✓ Branch 3 taken 447120 times.
|
4005176 | H264_WEIGHT(2) |
| 99 | |||
| 100 | #undef op_scale1 | ||
| 101 | #undef op_scale2 | ||
| 102 | #undef H264_WEIGHT | ||
| 103 | |||
| 104 | 75824090 | static av_always_inline av_flatten void FUNCC(h264_loop_filter_luma)(uint8_t *p_pix, ptrdiff_t xstride, ptrdiff_t ystride, int inner_iters, int alpha, int beta, int8_t *tc0) | |
| 105 | { | ||
| 106 | 75824090 | pixel *pix = (pixel*)p_pix; | |
| 107 | int i, d; | ||
| 108 | 75824090 | xstride >>= sizeof(pixel)-1; | |
| 109 | 75824090 | ystride >>= sizeof(pixel)-1; | |
| 110 | 75824090 | alpha <<= BIT_DEPTH - 8; | |
| 111 | 75824090 | beta <<= BIT_DEPTH - 8; | |
| 112 |
2/2✓ Branch 0 taken 151648180 times.
✓ Branch 1 taken 37912045 times.
|
379120450 | for( i = 0; i < 4; i++ ) { |
| 113 | 303296360 | const int tc_orig = tc0[i] * (1 << (BIT_DEPTH - 8)); | |
| 114 |
2/2✓ Branch 0 taken 25565761 times.
✓ Branch 1 taken 126082419 times.
|
303296360 | if( tc_orig < 0 ) { |
| 115 | 51131522 | pix += inner_iters*ystride; | |
| 116 | 51131522 | continue; | |
| 117 | } | ||
| 118 |
2/2✓ Branch 0 taken 501925028 times.
✓ Branch 1 taken 126082419 times.
|
1256014894 | for( d = 0; d < inner_iters; d++ ) { |
| 119 | 1003850056 | const int p0 = pix[-1*xstride]; | |
| 120 | 1003850056 | const int p1 = pix[-2*xstride]; | |
| 121 | 1003850056 | const int p2 = pix[-3*xstride]; | |
| 122 | 1003850056 | const int q0 = pix[0]; | |
| 123 | 1003850056 | const int q1 = pix[1*xstride]; | |
| 124 | 1003850056 | const int q2 = pix[2*xstride]; | |
| 125 | |||
| 126 |
2/2✓ Branch 0 taken 430318381 times.
✓ Branch 1 taken 71606647 times.
|
1003850056 | if( FFABS( p0 - q0 ) < alpha && |
| 127 |
2/2✓ Branch 0 taken 323373714 times.
✓ Branch 1 taken 106944667 times.
|
860636762 | FFABS( p1 - p0 ) < beta && |
| 128 |
2/2✓ Branch 0 taken 270616014 times.
✓ Branch 1 taken 52757700 times.
|
646747428 | FFABS( q1 - q0 ) < beta ) { |
| 129 | |||
| 130 | 541232028 | int tc = tc_orig; | |
| 131 | int i_delta; | ||
| 132 | |||
| 133 |
2/2✓ Branch 0 taken 229278036 times.
✓ Branch 1 taken 41337978 times.
|
541232028 | if( FFABS( p2 - p0 ) < beta ) { |
| 134 |
2/2✓ Branch 0 taken 214174486 times.
✓ Branch 1 taken 15103550 times.
|
458556072 | if(tc_orig) |
| 135 | 428348972 | pix[-2*xstride] = p1 + av_clip( (( p2 + ( ( p0 + q0 + 1 ) >> 1 ) ) >> 1) - p1, -tc_orig, tc_orig ); | |
| 136 | 458556072 | tc++; | |
| 137 | } | ||
| 138 |
2/2✓ Branch 0 taken 228106241 times.
✓ Branch 1 taken 42509773 times.
|
541232028 | if( FFABS( q2 - q0 ) < beta ) { |
| 139 |
2/2✓ Branch 0 taken 213031201 times.
✓ Branch 1 taken 15075040 times.
|
456212482 | if(tc_orig) |
| 140 | 426062402 | pix[ xstride] = q1 + av_clip( (( q2 + ( ( p0 + q0 + 1 ) >> 1 ) ) >> 1) - q1, -tc_orig, tc_orig ); | |
| 141 | 456212482 | tc++; | |
| 142 | } | ||
| 143 | |||
| 144 | 541232028 | i_delta = av_clip( (((q0 - p0 ) * 4) + (p1 - q1) + 4) >> 3, -tc, tc ); | |
| 145 | 541232028 | pix[-xstride] = av_clip_pixel( p0 + i_delta ); /* p0' */ | |
| 146 | 541232028 | pix[0] = av_clip_pixel( q0 - i_delta ); /* q0' */ | |
| 147 | } | ||
| 148 | 1003850056 | pix += ystride; | |
| 149 | } | ||
| 150 | } | ||
| 151 | 75824090 | } | |
| 152 | 38478964 | static void FUNCC(h264_v_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int8_t *tc0) | |
| 153 | { | ||
| 154 | 38478964 | FUNCC(h264_loop_filter_luma)(pix, stride, sizeof(pixel), 4, alpha, beta, tc0); | |
| 155 | 38478964 | } | |
| 156 | 36743964 | static void FUNCC(h264_h_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int8_t *tc0) | |
| 157 | { | ||
| 158 | 36743964 | FUNCC(h264_loop_filter_luma)(pix, sizeof(pixel), stride, 4, alpha, beta, tc0); | |
| 159 | 36743964 | } | |
| 160 | 601162 | static void FUNCC(h264_h_loop_filter_luma_mbaff)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int8_t *tc0) | |
| 161 | { | ||
| 162 | 601162 | FUNCC(h264_loop_filter_luma)(pix, sizeof(pixel), stride, 2, alpha, beta, tc0); | |
| 163 | 601162 | } | |
| 164 | |||
| 165 | 11302232 | static av_always_inline av_flatten void FUNCC(h264_loop_filter_luma_intra)(uint8_t *p_pix, ptrdiff_t xstride, ptrdiff_t ystride, int inner_iters, int alpha, int beta) | |
| 166 | { | ||
| 167 | 11302232 | pixel *pix = (pixel*)p_pix; | |
| 168 | int d; | ||
| 169 | 11302232 | xstride >>= sizeof(pixel)-1; | |
| 170 | 11302232 | ystride >>= sizeof(pixel)-1; | |
| 171 | 11302232 | alpha <<= BIT_DEPTH - 8; | |
| 172 | 11302232 | beta <<= BIT_DEPTH - 8; | |
| 173 |
2/2✓ Branch 0 taken 87411048 times.
✓ Branch 1 taken 5651116 times.
|
186124328 | for( d = 0; d < 4 * inner_iters; d++ ) { |
| 174 | 174822096 | const int p2 = pix[-3*xstride]; | |
| 175 | 174822096 | const int p1 = pix[-2*xstride]; | |
| 176 | 174822096 | const int p0 = pix[-1*xstride]; | |
| 177 | |||
| 178 | 174822096 | const int q0 = pix[ 0*xstride]; | |
| 179 | 174822096 | const int q1 = pix[ 1*xstride]; | |
| 180 | 174822096 | const int q2 = pix[ 2*xstride]; | |
| 181 | |||
| 182 |
2/2✓ Branch 0 taken 76876315 times.
✓ Branch 1 taken 10534733 times.
|
174822096 | if( FFABS( p0 - q0 ) < alpha && |
| 183 |
2/2✓ Branch 0 taken 61621039 times.
✓ Branch 1 taken 15255276 times.
|
153752630 | FFABS( p1 - p0 ) < beta && |
| 184 |
2/2✓ Branch 0 taken 53064519 times.
✓ Branch 1 taken 8556520 times.
|
123242078 | FFABS( q1 - q0 ) < beta ) { |
| 185 | |||
| 186 |
2/2✓ Branch 0 taken 44094840 times.
✓ Branch 1 taken 8969679 times.
|
106129038 | if(FFABS( p0 - q0 ) < (( alpha >> 2 ) + 2 )){ |
| 187 |
2/2✓ Branch 0 taken 39697441 times.
✓ Branch 1 taken 4397399 times.
|
88189680 | if( FFABS( p2 - p0 ) < beta) |
| 188 | { | ||
| 189 | 79394882 | const int p3 = pix[-4*xstride]; | |
| 190 | /* p0', p1', p2' */ | ||
| 191 | 79394882 | pix[-1*xstride] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3; | |
| 192 | 79394882 | pix[-2*xstride] = ( p2 + p1 + p0 + q0 + 2 ) >> 2; | |
| 193 | 79394882 | pix[-3*xstride] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3; | |
| 194 | } else { | ||
| 195 | /* p0' */ | ||
| 196 | 8794798 | pix[-1*xstride] = ( 2*p1 + p0 + q1 + 2 ) >> 2; | |
| 197 | } | ||
| 198 |
2/2✓ Branch 0 taken 39468099 times.
✓ Branch 1 taken 4626741 times.
|
88189680 | if( FFABS( q2 - q0 ) < beta) |
| 199 | { | ||
| 200 | 78936198 | const int q3 = pix[3*xstride]; | |
| 201 | /* q0', q1', q2' */ | ||
| 202 | 78936198 | pix[0*xstride] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3; | |
| 203 | 78936198 | pix[1*xstride] = ( p0 + q0 + q1 + q2 + 2 ) >> 2; | |
| 204 | 78936198 | pix[2*xstride] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3; | |
| 205 | } else { | ||
| 206 | /* q0' */ | ||
| 207 | 9253482 | pix[0*xstride] = ( 2*q1 + q0 + p1 + 2 ) >> 2; | |
| 208 | } | ||
| 209 | }else{ | ||
| 210 | /* p0', q0' */ | ||
| 211 | 17939358 | pix[-1*xstride] = ( 2*p1 + p0 + q1 + 2 ) >> 2; | |
| 212 | 17939358 | pix[ 0*xstride] = ( 2*q1 + q0 + p1 + 2 ) >> 2; | |
| 213 | } | ||
| 214 | } | ||
| 215 | 174822096 | pix += ystride; | |
| 216 | } | ||
| 217 | 11302232 | } | |
| 218 | 4670778 | static void FUNCC(h264_v_loop_filter_luma_intra)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta) | |
| 219 | { | ||
| 220 | 4670778 | FUNCC(h264_loop_filter_luma_intra)(pix, stride, sizeof(pixel), 4, alpha, beta); | |
| 221 | 4670778 | } | |
| 222 | 5879752 | static void FUNCC(h264_h_loop_filter_luma_intra)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta) | |
| 223 | { | ||
| 224 | 5879752 | FUNCC(h264_loop_filter_luma_intra)(pix, sizeof(pixel), stride, 4, alpha, beta); | |
| 225 | 5879752 | } | |
| 226 | 751702 | static void FUNCC(h264_h_loop_filter_luma_mbaff_intra)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta) | |
| 227 | { | ||
| 228 | 751702 | FUNCC(h264_loop_filter_luma_intra)(pix, sizeof(pixel), stride, 2, alpha, beta); | |
| 229 | 751702 | } | |
| 230 | |||
| 231 | 90196006 | static av_always_inline av_flatten void FUNCC(h264_loop_filter_chroma)(uint8_t *p_pix, ptrdiff_t xstride, ptrdiff_t ystride, int inner_iters, int alpha, int beta, int8_t *tc0) | |
| 232 | { | ||
| 233 | 90196006 | pixel *pix = (pixel*)p_pix; | |
| 234 | int i, d; | ||
| 235 | 90196006 | alpha <<= BIT_DEPTH - 8; | |
| 236 | 90196006 | beta <<= BIT_DEPTH - 8; | |
| 237 | 90196006 | xstride >>= sizeof(pixel)-1; | |
| 238 | 90196006 | ystride >>= sizeof(pixel)-1; | |
| 239 |
2/2✓ Branch 0 taken 180392012 times.
✓ Branch 1 taken 45098003 times.
|
450980030 | for( i = 0; i < 4; i++ ) { |
| 240 | 360784024 | const int tc = ((tc0[i] - 1U) << (BIT_DEPTH - 8)) + 1; | |
| 241 |
2/2✓ Branch 0 taken 24250634 times.
✓ Branch 1 taken 156141378 times.
|
360784024 | if( tc <= 0 ) { |
| 242 | 48501268 | pix += inner_iters*ystride; | |
| 243 | 48501268 | continue; | |
| 244 | } | ||
| 245 |
2/2✓ Branch 0 taken 320749214 times.
✓ Branch 1 taken 156141378 times.
|
953781184 | for( d = 0; d < inner_iters; d++ ) { |
| 246 | 641498428 | const int p0 = pix[-1*xstride]; | |
| 247 | 641498428 | const int p1 = pix[-2*xstride]; | |
| 248 | 641498428 | const int q0 = pix[0]; | |
| 249 | 641498428 | const int q1 = pix[1*xstride]; | |
| 250 | |||
| 251 |
2/2✓ Branch 0 taken 314156463 times.
✓ Branch 1 taken 6592751 times.
|
641498428 | if( FFABS( p0 - q0 ) < alpha && |
| 252 |
2/2✓ Branch 0 taken 295430561 times.
✓ Branch 1 taken 18725902 times.
|
628312926 | FFABS( p1 - p0 ) < beta && |
| 253 |
2/2✓ Branch 0 taken 282894638 times.
✓ Branch 1 taken 12535923 times.
|
590861122 | FFABS( q1 - q0 ) < beta ) { |
| 254 | |||
| 255 | 565789276 | int delta = av_clip( ((q0 - p0) * 4 + (p1 - q1) + 4) >> 3, -tc, tc ); | |
| 256 | |||
| 257 | 565789276 | pix[-xstride] = av_clip_pixel( p0 + delta ); /* p0' */ | |
| 258 | 565789276 | pix[0] = av_clip_pixel( q0 - delta ); /* q0' */ | |
| 259 | } | ||
| 260 | 641498428 | pix += ystride; | |
| 261 | } | ||
| 262 | } | ||
| 263 | 90196006 | } | |
| 264 | 48937692 | static void FUNCC(h264_v_loop_filter_chroma)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int8_t *tc0) | |
| 265 | { | ||
| 266 | 48937692 | FUNCC(h264_loop_filter_chroma)(pix, stride, sizeof(pixel), 2, alpha, beta, tc0); | |
| 267 | 48937692 | } | |
| 268 | 37183786 | static void FUNCC(h264_h_loop_filter_chroma)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int8_t *tc0) | |
| 269 | { | ||
| 270 | 37183786 | FUNCC(h264_loop_filter_chroma)(pix, sizeof(pixel), stride, 2, alpha, beta, tc0); | |
| 271 | 37183786 | } | |
| 272 | 1300824 | static void FUNCC(h264_h_loop_filter_chroma_mbaff)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int8_t *tc0) | |
| 273 | { | ||
| 274 | 1300824 | FUNCC(h264_loop_filter_chroma)(pix, sizeof(pixel), stride, 1, alpha, beta, tc0); | |
| 275 | 1300824 | } | |
| 276 | 2773272 | static void FUNCC(h264_h_loop_filter_chroma422)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int8_t *tc0) | |
| 277 | { | ||
| 278 | 2773272 | FUNCC(h264_loop_filter_chroma)(pix, sizeof(pixel), stride, 4, alpha, beta, tc0); | |
| 279 | 2773272 | } | |
| 280 | 432 | static void FUNCC(h264_h_loop_filter_chroma422_mbaff)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta, int8_t *tc0) | |
| 281 | { | ||
| 282 | 432 | FUNCC(h264_loop_filter_chroma)(pix, sizeof(pixel), stride, 2, alpha, beta, tc0); | |
| 283 | 432 | } | |
| 284 | |||
| 285 | 22042022 | static av_always_inline av_flatten void FUNCC(h264_loop_filter_chroma_intra)(uint8_t *p_pix, ptrdiff_t xstride, ptrdiff_t ystride, int inner_iters, int alpha, int beta) | |
| 286 | { | ||
| 287 | 22042022 | pixel *pix = (pixel*)p_pix; | |
| 288 | int d; | ||
| 289 | 22042022 | xstride >>= sizeof(pixel)-1; | |
| 290 | 22042022 | ystride >>= sizeof(pixel)-1; | |
| 291 | 22042022 | alpha <<= BIT_DEPTH - 8; | |
| 292 | 22042022 | beta <<= BIT_DEPTH - 8; | |
| 293 |
2/2✓ Branch 0 taken 96037672 times.
✓ Branch 1 taken 11021011 times.
|
214117366 | for( d = 0; d < 4 * inner_iters; d++ ) { |
| 294 | 192075344 | const int p0 = pix[-1*xstride]; | |
| 295 | 192075344 | const int p1 = pix[-2*xstride]; | |
| 296 | 192075344 | const int q0 = pix[0]; | |
| 297 | 192075344 | const int q1 = pix[1*xstride]; | |
| 298 | |||
| 299 |
2/2✓ Branch 0 taken 93150356 times.
✓ Branch 1 taken 2887316 times.
|
192075344 | if( FFABS( p0 - q0 ) < alpha && |
| 300 |
2/2✓ Branch 0 taken 88102630 times.
✓ Branch 1 taken 5047726 times.
|
186300712 | FFABS( p1 - p0 ) < beta && |
| 301 |
2/2✓ Branch 0 taken 84547911 times.
✓ Branch 1 taken 3554719 times.
|
176205260 | FFABS( q1 - q0 ) < beta ) { |
| 302 | |||
| 303 | 169095822 | pix[-xstride] = ( 2*p1 + p0 + q1 + 2 ) >> 2; /* p0' */ | |
| 304 | 169095822 | pix[0] = ( 2*q1 + q0 + p1 + 2 ) >> 2; /* q0' */ | |
| 305 | } | ||
| 306 | 192075344 | pix += ystride; | |
| 307 | } | ||
| 308 | 22042022 | } | |
| 309 | 9037100 | static void FUNCC(h264_v_loop_filter_chroma_intra)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta) | |
| 310 | { | ||
| 311 | 9037100 | FUNCC(h264_loop_filter_chroma_intra)(pix, stride, sizeof(pixel), 2, alpha, beta); | |
| 312 | 9037100 | } | |
| 313 | 9002622 | static void FUNCC(h264_h_loop_filter_chroma_intra)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta) | |
| 314 | { | ||
| 315 | 9002622 | FUNCC(h264_loop_filter_chroma_intra)(pix, sizeof(pixel), stride, 2, alpha, beta); | |
| 316 | 9002622 | } | |
| 317 | 1063536 | static void FUNCC(h264_h_loop_filter_chroma_mbaff_intra)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta) | |
| 318 | { | ||
| 319 | 1063536 | FUNCC(h264_loop_filter_chroma_intra)(pix, sizeof(pixel), stride, 1, alpha, beta); | |
| 320 | 1063536 | } | |
| 321 | 2499164 | static void FUNCC(h264_h_loop_filter_chroma422_intra)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta) | |
| 322 | { | ||
| 323 | 2499164 | FUNCC(h264_loop_filter_chroma_intra)(pix, sizeof(pixel), stride, 4, alpha, beta); | |
| 324 | 2499164 | } | |
| 325 | 439600 | static void FUNCC(h264_h_loop_filter_chroma422_mbaff_intra)(uint8_t *pix, ptrdiff_t stride, int alpha, int beta) | |
| 326 | { | ||
| 327 | 439600 | FUNCC(h264_loop_filter_chroma_intra)(pix, sizeof(pixel), stride, 2, alpha, beta); | |
| 328 | 439600 | } | |
| 329 |