summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/avc/enc/src/sad_halfpel.cpp
blob: faf21989ff62f6779026c41db4f5b42eab647efc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
/* ------------------------------------------------------------------
 * Copyright (C) 1998-2009 PacketVideo
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 * -------------------------------------------------------------------
 */
/* contains
int AVCHalfPel1_SAD_MB(uint8 *ref,uint8 *blk,int dmin,int width,int ih,int jh)
int AVCHalfPel2_SAD_MB(uint8 *ref,uint8 *blk,int dmin,int width)
int AVCHalfPel1_SAD_Blk(uint8 *ref,uint8 *blk,int dmin,int width,int ih,int jh)
int AVCHalfPel2_SAD_Blk(uint8 *ref,uint8 *blk,int dmin,int width)

int AVCSAD_MB_HalfPel_C(uint8 *ref,uint8 *blk,int dmin,int width,int rx,int xh,int yh,void *extra_info)
int AVCSAD_MB_HP_HTFM_Collect(uint8 *ref,uint8 *blk,int dmin,int width,int rx,int xh,int yh,void *extra_info)
int AVCSAD_MB_HP_HTFM(uint8 *ref,uint8 *blk,int dmin,int width,int rx,int xh,int yh,void *extra_info)
int AVCSAD_Blk_HalfPel_C(uint8 *ref,uint8 *blk,int dmin,int width,int rx,int xh,int yh,void *extra_info)
*/

#include "avcenc_lib.h"
#include "sad_halfpel_inline.h"

#ifdef _SAD_STAT
uint32 num_sad_HP_MB = 0;
uint32 num_sad_HP_Blk = 0;
uint32 num_sad_HP_MB_call = 0;
uint32 num_sad_HP_Blk_call = 0;
#define NUM_SAD_HP_MB_CALL()    num_sad_HP_MB_call++
#define NUM_SAD_HP_MB()         num_sad_HP_MB++
#define NUM_SAD_HP_BLK_CALL()   num_sad_HP_Blk_call++
#define NUM_SAD_HP_BLK()        num_sad_HP_Blk++
#else
#define NUM_SAD_HP_MB_CALL()
#define NUM_SAD_HP_MB()
#define NUM_SAD_HP_BLK_CALL()
#define NUM_SAD_HP_BLK()
#endif



/*===============================================================
    Function:   SAD_MB_HalfPel
    Date:       09/17/2000
    Purpose:    Compute the SAD on the half-pel resolution
    Input/Output:   hmem is assumed to be a pointer to the starting
                point of the search in the 33x33 matrix search region
    Changes:
    11/7/00:    implemented MMX
  ===============================================================*/
/*==================================================================
    Function:   AVCSAD_MB_HalfPel_C
    Date:       04/30/2001
    Purpose:    Compute SAD 16x16 between blk and ref in halfpel
                resolution,
    Changes:
  ==================================================================*/
/* One component is half-pel */
int AVCSAD_MB_HalfPel_Cxhyh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    (void)(extra_info);

    int i, j;
    int sad = 0;
    uint8 *kk, *p1, *p2, *p3, *p4;
//  int sumref=0;
    int temp;
    int rx = dmin_rx & 0xFFFF;

    NUM_SAD_HP_MB_CALL();

    p1 = ref;
    p2 = ref + 1;
    p3 = ref + rx;
    p4 = ref + rx + 1;
    kk  = blk;

    for (i = 0; i < 16; i++)
    {
        for (j = 0; j < 16; j++)
        {

            temp = ((p1[j] + p2[j] + p3[j] + p4[j] + 2) >> 2) - *kk++;
            sad += AVC_ABS(temp);
        }

        NUM_SAD_HP_MB();

        if (sad > (int)((uint32)dmin_rx >> 16))
            return sad;

        p1 += rx;
        p3 += rx;
        p2 += rx;
        p4 += rx;
    }
    return sad;
}

int AVCSAD_MB_HalfPel_Cyh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    (void)(extra_info);

    int i, j;
    int sad = 0;
    uint8 *kk, *p1, *p2;
//  int sumref=0;
    int temp;
    int rx = dmin_rx & 0xFFFF;

    NUM_SAD_HP_MB_CALL();

    p1 = ref;
    p2 = ref + rx; /* either left/right or top/bottom pixel */
    kk  = blk;

    for (i = 0; i < 16; i++)
    {
        for (j = 0; j < 16; j++)
        {

            temp = ((p1[j] + p2[j] + 1) >> 1) - *kk++;
            sad += AVC_ABS(temp);
        }

        NUM_SAD_HP_MB();

        if (sad > (int)((uint32)dmin_rx >> 16))
            return sad;
        p1 += rx;
        p2 += rx;
    }
    return sad;
}

int AVCSAD_MB_HalfPel_Cxh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    (void)(extra_info);

    int i, j;
    int sad = 0;
    uint8 *kk, *p1;
    int temp;
    int rx = dmin_rx & 0xFFFF;

    NUM_SAD_HP_MB_CALL();

    p1 = ref;
    kk  = blk;

    for (i = 0; i < 16; i++)
    {
        for (j = 0; j < 16; j++)
        {

            temp = ((p1[j] + p1[j+1] + 1) >> 1) - *kk++;
            sad += AVC_ABS(temp);
        }

        NUM_SAD_HP_MB();

        if (sad > (int)((uint32)dmin_rx >> 16))
            return sad;
        p1 += rx;
    }
    return sad;
}

#ifdef HTFM  /* HTFM with uniform subsampling implementation,  2/28/01 */

//Checheck here
int AVCAVCSAD_MB_HP_HTFM_Collectxhyh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    int i, j;
    int sad = 0;
    uint8 *p1, *p2;
    int rx = dmin_rx & 0xFFFF;
    int refwx4 = rx << 2;
    int saddata[16];      /* used when collecting flag (global) is on */
    int difmad, tmp, tmp2;
    int madstar;
    HTFM_Stat *htfm_stat = (HTFM_Stat*) extra_info;
    int *abs_dif_mad_avg = &(htfm_stat->abs_dif_mad_avg);
    UInt *countbreak = &(htfm_stat->countbreak);
    int *offsetRef = htfm_stat->offsetRef;
    uint32 cur_word;

    madstar = (uint32)dmin_rx >> 20;

    NUM_SAD_HP_MB_CALL();

    blk -= 4;

    for (i = 0; i < 16; i++) /* 16 stages */
    {
        p1 = ref + offsetRef[i];
        p2 = p1 + rx;

        j = 4;/* 4 lines */
        do
        {
            cur_word = *((uint32*)(blk += 4));
            tmp = p1[12] + p2[12];
            tmp2 = p1[13] + p2[13];
            tmp += tmp2;
            tmp2 = (cur_word >> 24) & 0xFF;
            tmp += 2;
            sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[8] + p2[8];
            tmp2 = p1[9] + p2[9];
            tmp += tmp2;
            tmp2 = (cur_word >> 16) & 0xFF;
            tmp += 2;
            sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[4] + p2[4];
            tmp2 = p1[5] + p2[5];
            tmp += tmp2;
            tmp2 = (cur_word >> 8) & 0xFF;
            tmp += 2;
            sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
            tmp2 = p1[1] + p2[1];
            tmp = p1[0] + p2[0];
            p1 += refwx4;
            p2 += refwx4;
            tmp += tmp2;
            tmp2 = (cur_word & 0xFF);
            tmp += 2;
            sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
        }
        while (--j);

        NUM_SAD_HP_MB();

        saddata[i] = sad;

        if (i > 0)
        {
            if (sad > ((uint32)dmin_rx >> 16))
            {
                difmad = saddata[0] - ((saddata[1] + 1) >> 1);
                (*abs_dif_mad_avg) += ((difmad > 0) ? difmad : -difmad);
                (*countbreak)++;
                return sad;
            }
        }
    }
    difmad = saddata[0] - ((saddata[1] + 1) >> 1);
    (*abs_dif_mad_avg) += ((difmad > 0) ? difmad : -difmad);
    (*countbreak)++;

    return sad;
}

int AVCAVCSAD_MB_HP_HTFM_Collectyh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    int i, j;
    int sad = 0;
    uint8 *p1, *p2;
    int rx = dmin_rx & 0xFFFF;
    int refwx4 = rx << 2;
    int saddata[16];      /* used when collecting flag (global) is on */
    int difmad, tmp, tmp2;
    int madstar;
    HTFM_Stat *htfm_stat = (HTFM_Stat*) extra_info;
    int *abs_dif_mad_avg = &(htfm_stat->abs_dif_mad_avg);
    UInt *countbreak = &(htfm_stat->countbreak);
    int *offsetRef = htfm_stat->offsetRef;
    uint32 cur_word;

    madstar = (uint32)dmin_rx >> 20;

    NUM_SAD_HP_MB_CALL();

    blk -= 4;

    for (i = 0; i < 16; i++) /* 16 stages */
    {
        p1 = ref + offsetRef[i];
        p2 = p1 + rx;
        j = 4;
        do
        {
            cur_word = *((uint32*)(blk += 4));
            tmp = p1[12];
            tmp2 = p2[12];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 24) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[8];
            tmp2 = p2[8];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 16) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[4];
            tmp2 = p2[4];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 8) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[0];
            p1 += refwx4;
            tmp2 = p2[0];
            p2 += refwx4;
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word & 0xFF);
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
        }
        while (--j);

        NUM_SAD_HP_MB();

        saddata[i] = sad;

        if (i > 0)
        {
            if (sad > ((uint32)dmin_rx >> 16))
            {
                difmad = saddata[0] - ((saddata[1] + 1) >> 1);
                (*abs_dif_mad_avg) += ((difmad > 0) ? difmad : -difmad);
                (*countbreak)++;
                return sad;
            }
        }
    }
    difmad = saddata[0] - ((saddata[1] + 1) >> 1);
    (*abs_dif_mad_avg) += ((difmad > 0) ? difmad : -difmad);
    (*countbreak)++;

    return sad;
}

int AVCAVCSAD_MB_HP_HTFM_Collectxh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    int i, j;
    int sad = 0;
    uint8 *p1;
    int rx = dmin_rx & 0xFFFF;
    int refwx4 = rx << 2;
    int saddata[16];      /* used when collecting flag (global) is on */
    int difmad, tmp, tmp2;
    int madstar;
    HTFM_Stat *htfm_stat = (HTFM_Stat*) extra_info;
    int *abs_dif_mad_avg = &(htfm_stat->abs_dif_mad_avg);
    UInt *countbreak = &(htfm_stat->countbreak);
    int *offsetRef = htfm_stat->offsetRef;
    uint32 cur_word;

    madstar = (uint32)dmin_rx >> 20;

    NUM_SAD_HP_MB_CALL();

    blk -= 4;

    for (i = 0; i < 16; i++) /* 16 stages */
    {
        p1 = ref + offsetRef[i];

        j = 4; /* 4 lines */
        do
        {
            cur_word = *((uint32*)(blk += 4));
            tmp = p1[12];
            tmp2 = p1[13];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 24) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[8];
            tmp2 = p1[9];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 16) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[4];
            tmp2 = p1[5];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 8) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[0];
            tmp2 = p1[1];
            p1 += refwx4;
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word & 0xFF);
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
        }
        while (--j);

        NUM_SAD_HP_MB();

        saddata[i] = sad;

        if (i > 0)
        {
            if (sad > ((uint32)dmin_rx >> 16))
            {
                difmad = saddata[0] - ((saddata[1] + 1) >> 1);
                (*abs_dif_mad_avg) += ((difmad > 0) ? difmad : -difmad);
                (*countbreak)++;
                return sad;
            }
        }
    }
    difmad = saddata[0] - ((saddata[1] + 1) >> 1);
    (*abs_dif_mad_avg) += ((difmad > 0) ? difmad : -difmad);
    (*countbreak)++;

    return sad;
}

int AVCSAD_MB_HP_HTFMxhyh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    int i, j;
    int sad = 0, tmp, tmp2;
    uint8 *p1, *p2;
    int rx = dmin_rx & 0xFFFF;
    int refwx4 = rx << 2;
    int sadstar = 0, madstar;
    int *nrmlz_th = (int*) extra_info;
    int *offsetRef = nrmlz_th + 32;
    uint32 cur_word;

    madstar = (uint32)dmin_rx >> 20;

    NUM_SAD_HP_MB_CALL();

    blk -= 4;

    for (i = 0; i < 16; i++) /* 16 stages */
    {
        p1 = ref + offsetRef[i];
        p2 = p1 + rx;

        j = 4; /* 4 lines */
        do
        {
            cur_word = *((uint32*)(blk += 4));
            tmp = p1[12] + p2[12];
            tmp2 = p1[13] + p2[13];
            tmp += tmp2;
            tmp2 = (cur_word >> 24) & 0xFF;
            tmp += 2;
            sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[8] + p2[8];
            tmp2 = p1[9] + p2[9];
            tmp += tmp2;
            tmp2 = (cur_word >> 16) & 0xFF;
            tmp += 2;
            sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[4] + p2[4];
            tmp2 = p1[5] + p2[5];
            tmp += tmp2;
            tmp2 = (cur_word >> 8) & 0xFF;
            tmp += 2;
            sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
            tmp2 = p1[1] + p2[1];
            tmp = p1[0] + p2[0];
            p1 += refwx4;
            p2 += refwx4;
            tmp += tmp2;
            tmp2 = (cur_word & 0xFF);
            tmp += 2;
            sad = INTERP2_SUB_SAD(sad, tmp, tmp2);;
        }
        while (--j);

        NUM_SAD_HP_MB();

        sadstar += madstar;
        if (sad > sadstar - nrmlz_th[i] || sad > ((uint32)dmin_rx >> 16))
        {
            return 65536;
        }
    }

    return sad;
}

int AVCSAD_MB_HP_HTFMyh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    int i, j;
    int sad = 0, tmp, tmp2;
    uint8 *p1, *p2;
    int rx = dmin_rx & 0xFFFF;
    int refwx4 = rx << 2;
    int sadstar = 0, madstar;
    int *nrmlz_th = (int*) extra_info;
    int *offsetRef = nrmlz_th + 32;
    uint32 cur_word;

    madstar = (uint32)dmin_rx >> 20;

    NUM_SAD_HP_MB_CALL();

    blk -= 4;

    for (i = 0; i < 16; i++) /* 16 stages */
    {
        p1 = ref + offsetRef[i];
        p2 = p1 + rx;
        j = 4;
        do
        {
            cur_word = *((uint32*)(blk += 4));
            tmp = p1[12];
            tmp2 = p2[12];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 24) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[8];
            tmp2 = p2[8];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 16) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[4];
            tmp2 = p2[4];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 8) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[0];
            p1 += refwx4;
            tmp2 = p2[0];
            p2 += refwx4;
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word & 0xFF);
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
        }
        while (--j);

        NUM_SAD_HP_MB();
        sadstar += madstar;
        if (sad > sadstar - nrmlz_th[i] || sad > ((uint32)dmin_rx >> 16))
        {
            return 65536;
        }
    }

    return sad;
}

int AVCSAD_MB_HP_HTFMxh(uint8 *ref, uint8 *blk, int dmin_rx, void *extra_info)
{
    int i, j;
    int sad = 0, tmp, tmp2;
    uint8 *p1;
    int rx = dmin_rx & 0xFFFF;
    int refwx4 = rx << 2;
    int sadstar = 0, madstar;
    int *nrmlz_th = (int*) extra_info;
    int *offsetRef = nrmlz_th + 32;
    uint32 cur_word;

    madstar = (uint32)dmin_rx >> 20;

    NUM_SAD_HP_MB_CALL();

    blk -= 4;

    for (i = 0; i < 16; i++) /* 16 stages */
    {
        p1 = ref + offsetRef[i];

        j = 4;/* 4 lines */
        do
        {
            cur_word = *((uint32*)(blk += 4));
            tmp = p1[12];
            tmp2 = p1[13];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 24) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[8];
            tmp2 = p1[9];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 16) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[4];
            tmp2 = p1[5];
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word >> 8) & 0xFF;
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
            tmp = p1[0];
            tmp2 = p1[1];
            p1 += refwx4;
            tmp++;
            tmp2 += tmp;
            tmp = (cur_word & 0xFF);
            sad = INTERP1_SUB_SAD(sad, tmp, tmp2);;
        }
        while (--j);

        NUM_SAD_HP_MB();

        sadstar += madstar;
        if (sad > sadstar - nrmlz_th[i] || sad > ((uint32)dmin_rx >> 16))
        {
            return 65536;
        }
    }

    return sad;
}

#endif /* HTFM */