util.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:4k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * mc.h: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2008 x264 Project
  5.  *
  6.  * Authors: Jason Garrett-Glaser <darkshikari@gmail.com>
  7.  *          Loren Merritt <lorenm@u.washington.edu>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef X264_X86_UTIL_H
  24. #define X264_X86_UTIL_H
  25. #ifdef __GNUC__
  26. #define x264_median_mv x264_median_mv_mmxext
  27. static inline void x264_median_mv_mmxext( int16_t *dst, int16_t *a, int16_t *b, int16_t *c )
  28. {
  29.     asm(
  30.         "movd   %1,    %%mm0 n"
  31.         "movd   %2,    %%mm1 n"
  32.         "movq   %%mm0, %%mm3 n"
  33.         "movd   %3,    %%mm2 n"
  34.         "pmaxsw %%mm1, %%mm0 n"
  35.         "pminsw %%mm3, %%mm1 n"
  36.         "pminsw %%mm2, %%mm0 n"
  37.         "pmaxsw %%mm1, %%mm0 n"
  38.         "movd   %%mm0, %0    n"
  39.         :"=m"(*(uint32_t*)dst)
  40.         :"m"(*(uint32_t*)a), "m"(*(uint32_t*)b), "m"(*(uint32_t*)c)
  41.     );
  42. }
  43. #define x264_predictor_difference x264_predictor_difference_mmxext
  44. static inline int x264_predictor_difference_mmxext( int16_t (*mvc)[2], intptr_t i_mvc )
  45. {
  46.     int sum = 0;
  47.     uint16_t output[4];
  48.     asm(
  49.         "pxor    %%mm4, %%mm4 n"
  50.         "test    $1, %1       n"
  51.         "jnz 3f               n"
  52.         "movd    -8(%2,%1,4), %%mm0 n"
  53.         "movd    -4(%2,%1,4), %%mm3 n"
  54.         "psubw   %%mm3, %%mm0 n"
  55.         "jmp 2f               n"
  56.         "3:                   n"
  57.         "sub     $1,    %1    n"
  58.         "1:                   n"
  59.         "movq    -8(%2,%1,4), %%mm0 n"
  60.         "psubw   -4(%2,%1,4), %%mm0 n"
  61.         "2:                   n"
  62.         "sub     $2,    %1    n"
  63.         "pxor    %%mm2, %%mm2 n"
  64.         "psubw   %%mm0, %%mm2 n"
  65.         "pmaxsw  %%mm2, %%mm0 n"
  66.         "paddusw %%mm0, %%mm4 n"
  67.         "jg 1b                n"
  68.         "movq    %%mm4, %0    n"
  69.         :"=m"(output), "+r"(i_mvc)
  70.         :"r"(mvc)
  71.     );
  72.     sum += output[0] + output[1] + output[2] + output[3];
  73.     return sum;
  74. }
  75. #define array_non_zero_count array_non_zero_count_mmx
  76. static inline int array_non_zero_count_mmx( int16_t *v )
  77. {
  78.     int count;
  79.     asm(
  80.         "pxor     %%mm7,  %%mm7 n"
  81.         "movq     (%1),   %%mm0 n"
  82.         "movq     8(%1),  %%mm1 n"
  83.         "packsswb 16(%1), %%mm0 n"
  84.         "packsswb 24(%1), %%mm1 n"
  85.         "pcmpeqb  %%mm7,  %%mm0 n"
  86.         "pcmpeqb  %%mm7,  %%mm1 n"
  87.         "paddb    %%mm0,  %%mm1 n"
  88.         "psadbw   %%mm7,  %%mm1 n"
  89.         "movd     %%mm1,  %0    n"
  90.         :"=r"(count)
  91.         :"r"(v)
  92.     );
  93.     return (count+0x10)&0xff;
  94. }
  95. #undef array_non_zero_int
  96. #define array_non_zero_int array_non_zero_int_mmx
  97. static ALWAYS_INLINE int array_non_zero_int_mmx( void *v, int i_count )
  98. {
  99.     if(i_count == 128)
  100.     {
  101.         int nonzero = 0;
  102.         asm(
  103.             "movq     (%1),    %%mm0 n"
  104.             "por      8(%1),   %%mm0 n"
  105.             "por      16(%1),  %%mm0 n"
  106.             "por      24(%1),  %%mm0 n"
  107.             "por      32(%1),  %%mm0 n"
  108.             "por      40(%1),  %%mm0 n"
  109.             "por      48(%1),  %%mm0 n"
  110.             "por      56(%1),  %%mm0 n"
  111.             "por      64(%1),  %%mm0 n"
  112.             "por      72(%1),  %%mm0 n"
  113.             "por      80(%1),  %%mm0 n"
  114.             "por      88(%1),  %%mm0 n"
  115.             "por      96(%1),  %%mm0 n"
  116.             "por      104(%1), %%mm0 n"
  117.             "por      112(%1), %%mm0 n"
  118.             "por      120(%1), %%mm0 n"
  119.             "packsswb %%mm0,   %%mm0 n"
  120.             "movd     %%mm0,   %0    n"
  121.             :"=r"(nonzero)
  122.             :"r"(v)
  123.         );
  124.         return !!nonzero;
  125.     }
  126.     else return array_non_zero_int_c( v, i_count );
  127. }
  128. #endif
  129. #endif