Home | History | Annotate | Download | only in x86
      1 /*
      2  *  Copyright (c) 2012 The WebM project authors. All Rights Reserved.
      3  *
      4  *  Use of this source code is governed by a BSD-style license
      5  *  that can be found in the LICENSE file in the root of the source
      6  *  tree. An additional intellectual property rights grant can be found
      7  *  in the file PATENTS.  All contributing project authors may
      8  *  be found in the AUTHORS file in the root of the source tree.
      9  */
     10 
     11 #include "vp8/encoder/denoising.h"
     12 #include "vp8/common/reconinter.h"
     13 #include "vpx/vpx_integer.h"
     14 #include "vpx_mem/vpx_mem.h"
     15 #include "vpx_rtcd.h"
     16 
     17 #include <emmintrin.h>
     18 
     19 union sum_union {
     20     __m128i v;
     21     signed char e[16];
     22 };
     23 
     24 int vp8_denoiser_filter_sse2(YV12_BUFFER_CONFIG *mc_running_avg,
     25                              YV12_BUFFER_CONFIG *running_avg,
     26                              MACROBLOCK *signal, unsigned int motion_magnitude,
     27                              int y_offset, int uv_offset)
     28 {
     29     unsigned char *sig = signal->thismb;
     30     int sig_stride = 16;
     31     unsigned char *mc_running_avg_y = mc_running_avg->y_buffer + y_offset;
     32     int mc_avg_y_stride = mc_running_avg->y_stride;
     33     unsigned char *running_avg_y = running_avg->y_buffer + y_offset;
     34     int avg_y_stride = running_avg->y_stride;
     35     int r;
     36     __m128i acc_diff = _mm_setzero_si128();
     37     const __m128i k_0 = _mm_setzero_si128();
     38     const __m128i k_4 = _mm_set1_epi8(4);
     39     const __m128i k_8 = _mm_set1_epi8(8);
     40     const __m128i k_16 = _mm_set1_epi8(16);
     41     /* Modify each level's adjustment according to motion_magnitude. */
     42     const __m128i l3 = _mm_set1_epi8(
     43                       (motion_magnitude <= MOTION_MAGNITUDE_THRESHOLD) ? 7 : 6);
     44     /* Difference between level 3 and level 2 is 2. */
     45     const __m128i l32 = _mm_set1_epi8(2);
     46     /* Difference between level 2 and level 1 is 1. */
     47     const __m128i l21 = _mm_set1_epi8(1);
     48 
     49     for (r = 0; r < 16; ++r)
     50     {
     51         /* Calculate differences */
     52         const __m128i v_sig = _mm_loadu_si128((__m128i *)(&sig[0]));
     53         const __m128i v_mc_running_avg_y = _mm_loadu_si128(
     54                                            (__m128i *)(&mc_running_avg_y[0]));
     55         __m128i v_running_avg_y;
     56         const __m128i pdiff = _mm_subs_epu8(v_mc_running_avg_y, v_sig);
     57         const __m128i ndiff = _mm_subs_epu8(v_sig, v_mc_running_avg_y);
     58         /* Obtain the sign. FF if diff is negative. */
     59         const __m128i diff_sign = _mm_cmpeq_epi8(pdiff, k_0);
     60         /* Clamp absolute difference to 16 to be used to get mask. Doing this
     61          * allows us to use _mm_cmpgt_epi8, which operates on signed byte. */
     62         const __m128i clamped_absdiff = _mm_min_epu8(
     63                                         _mm_or_si128(pdiff, ndiff), k_16);
     64         /* Get masks for l2 l1 and l0 adjustments */
     65         const __m128i mask2 = _mm_cmpgt_epi8(k_16, clamped_absdiff);
     66         const __m128i mask1 = _mm_cmpgt_epi8(k_8, clamped_absdiff);
     67         const __m128i mask0 = _mm_cmpgt_epi8(k_4, clamped_absdiff);
     68         /* Get adjustments for l2, l1, and l0 */
     69         __m128i adj2 = _mm_and_si128(mask2, l32);
     70         const __m128i adj1 = _mm_and_si128(mask1, l21);
     71         const __m128i adj0 = _mm_and_si128(mask0, clamped_absdiff);
     72         __m128i adj,  padj, nadj;
     73 
     74         /* Combine the adjustments and get absolute adjustments. */
     75         adj2 = _mm_add_epi8(adj2, adj1);
     76         adj = _mm_sub_epi8(l3, adj2);
     77         adj = _mm_andnot_si128(mask0, adj);
     78         adj = _mm_or_si128(adj, adj0);
     79 
     80         /* Restore the sign and get positive and negative adjustments. */
     81         padj = _mm_andnot_si128(diff_sign, adj);
     82         nadj = _mm_and_si128(diff_sign, adj);
     83 
     84         /* Calculate filtered value. */
     85         v_running_avg_y = _mm_adds_epu8(v_sig, padj);
     86         v_running_avg_y = _mm_subs_epu8(v_running_avg_y, nadj);
     87         _mm_storeu_si128((__m128i *)running_avg_y, v_running_avg_y);
     88 
     89         /* Adjustments <=7, and each element in acc_diff can fit in signed
     90          * char.
     91          */
     92         acc_diff = _mm_adds_epi8(acc_diff, padj);
     93         acc_diff = _mm_subs_epi8(acc_diff, nadj);
     94 
     95         /* Update pointers for next iteration. */
     96         sig += sig_stride;
     97         mc_running_avg_y += mc_avg_y_stride;
     98         running_avg_y += avg_y_stride;
     99     }
    100 
    101     {
    102         /* Compute the sum of all pixel differences of this MB. */
    103         union sum_union s;
    104         int sum_diff = 0;
    105         s.v = acc_diff;
    106         sum_diff = s.e[0] + s.e[1] + s.e[2] + s.e[3] + s.e[4] + s.e[5]
    107                  + s.e[6] + s.e[7] + s.e[8] + s.e[9] + s.e[10] + s.e[11]
    108                  + s.e[12] + s.e[13] + s.e[14] + s.e[15];
    109 
    110         if (abs(sum_diff) > SUM_DIFF_THRESHOLD)
    111         {
    112             return COPY_BLOCK;
    113         }
    114     }
    115 
    116     vp8_copy_mem16x16(running_avg->y_buffer + y_offset, avg_y_stride,
    117                       signal->thismb, sig_stride);
    118     return FILTER_BLOCK;
    119 }
    120