libavcodec/x86/dirac_dwt_init.c
5d50fcc5
 /*
9fd6ea93
  * x86 optimized discrete wavelet transform
5d50fcc5
  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  * Copyright (c) 2010 David Conrad
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
9f088a1e
 #include "libavutil/x86/asm.h"
d6676a16
 #include "libavutil/x86/cpu.h"
9fd6ea93
 #include "libavcodec/dirac_dwt.h"
5d50fcc5
 
 #define COMPOSE_VERTICAL(ext, align) \
3f07f12f
 void ff_vertical_compose53iL0##ext(int16_t *b0, int16_t *b1, int16_t *b2, int width); \
 void ff_vertical_compose_dirac53iH0##ext(int16_t *b0, int16_t *b1, int16_t *b2, int width); \
 void ff_vertical_compose_dd137iL0##ext(int16_t *b0, int16_t *b1, int16_t *b2, int16_t *b3, int16_t *b4, int width); \
 void ff_vertical_compose_dd97iH0##ext(int16_t *b0, int16_t *b1, int16_t *b2, int16_t *b3, int16_t *b4, int width); \
 void ff_vertical_compose_haar##ext(int16_t *b0, int16_t *b1, int width); \
 void ff_horizontal_compose_haar0i##ext(int16_t *b, int16_t *tmp, int w);\
 void ff_horizontal_compose_haar1i##ext(int16_t *b, int16_t *tmp, int w);\
 \
 static void vertical_compose53iL0##ext(uint8_t *_b0, uint8_t *_b1, uint8_t *_b2, int width) \
5d50fcc5
 { \
     int i, width_align = width&~(align-1); \
3f07f12f
     int16_t *b0 = (int16_t *)_b0; \
     int16_t *b1 = (int16_t *)_b1; \
     int16_t *b2 = (int16_t *)_b2; \
5d50fcc5
 \
     for(i=width_align; i<width; i++) \
         b1[i] = COMPOSE_53iL0(b0[i], b1[i], b2[i]); \
 \
     ff_vertical_compose53iL0##ext(b0, b1, b2, width_align); \
 } \
 \
3f07f12f
 static void vertical_compose_dirac53iH0##ext(uint8_t *_b0, uint8_t *_b1, uint8_t *_b2, int width) \
5d50fcc5
 { \
     int i, width_align = width&~(align-1); \
3f07f12f
     int16_t *b0 = (int16_t *)_b0; \
     int16_t *b1 = (int16_t *)_b1; \
     int16_t *b2 = (int16_t *)_b2; \
5d50fcc5
 \
     for(i=width_align; i<width; i++) \
         b1[i] = COMPOSE_DIRAC53iH0(b0[i], b1[i], b2[i]); \
 \
     ff_vertical_compose_dirac53iH0##ext(b0, b1, b2, width_align); \
 } \
 \
3f07f12f
 static void vertical_compose_dd137iL0##ext(uint8_t *_b0, uint8_t *_b1, uint8_t *_b2, \
                                            uint8_t *_b3, uint8_t *_b4, int width) \
5d50fcc5
 { \
     int i, width_align = width&~(align-1); \
3f07f12f
     int16_t *b0 = (int16_t *)_b0; \
     int16_t *b1 = (int16_t *)_b1; \
     int16_t *b2 = (int16_t *)_b2; \
     int16_t *b3 = (int16_t *)_b3; \
     int16_t *b4 = (int16_t *)_b4; \
5d50fcc5
 \
     for(i=width_align; i<width; i++) \
         b2[i] = COMPOSE_DD137iL0(b0[i], b1[i], b2[i], b3[i], b4[i]); \
 \
     ff_vertical_compose_dd137iL0##ext(b0, b1, b2, b3, b4, width_align); \
 } \
 \
3f07f12f
 static void vertical_compose_dd97iH0##ext(uint8_t *_b0, uint8_t *_b1, uint8_t *_b2, \
                                           uint8_t *_b3, uint8_t *_b4, int width) \
5d50fcc5
 { \
     int i, width_align = width&~(align-1); \
3f07f12f
     int16_t *b0 = (int16_t *)_b0; \
     int16_t *b1 = (int16_t *)_b1; \
     int16_t *b2 = (int16_t *)_b2; \
     int16_t *b3 = (int16_t *)_b3; \
     int16_t *b4 = (int16_t *)_b4; \
5d50fcc5
 \
     for(i=width_align; i<width; i++) \
         b2[i] = COMPOSE_DD97iH0(b0[i], b1[i], b2[i], b3[i], b4[i]); \
 \
     ff_vertical_compose_dd97iH0##ext(b0, b1, b2, b3, b4, width_align); \
 } \
3f07f12f
 static void vertical_compose_haar##ext(uint8_t *_b0, uint8_t *_b1, int width) \
5d50fcc5
 { \
     int i, width_align = width&~(align-1); \
3f07f12f
     int16_t *b0 = (int16_t *)_b0; \
     int16_t *b1 = (int16_t *)_b1; \
5d50fcc5
 \
     for(i=width_align; i<width; i++) { \
         b0[i] = COMPOSE_HAARiL0(b0[i], b1[i]); \
         b1[i] = COMPOSE_HAARiH0(b1[i], b0[i]); \
     } \
 \
     ff_vertical_compose_haar##ext(b0, b1, width_align); \
 } \
3f07f12f
 static void horizontal_compose_haar0i##ext(uint8_t *_b, uint8_t *_tmp, int w)\
754539a4
 {\
     int w2= w>>1;\
     int x= w2 - (w2&(align-1));\
3f07f12f
     int16_t *b = (int16_t *)_b; \
     int16_t *tmp = (int16_t *)_tmp; \
 \
754539a4
     ff_horizontal_compose_haar0i##ext(b, tmp, w);\
 \
     for (; x < w2; x++) {\
         b[2*x  ] = tmp[x];\
         b[2*x+1] = COMPOSE_HAARiH0(b[x+w2], tmp[x]);\
     }\
 }\
3f07f12f
 static void horizontal_compose_haar1i##ext(uint8_t *_b, uint8_t *_tmp, int w)\
754539a4
 {\
     int w2= w>>1;\
     int x= w2 - (w2&(align-1));\
3f07f12f
     int16_t *b = (int16_t *)_b; \
     int16_t *tmp = (int16_t *)_tmp; \
 \
754539a4
     ff_horizontal_compose_haar1i##ext(b, tmp, w);\
 \
     for (; x < w2; x++) {\
         b[2*x  ] = (tmp[x] + 1)>>1;\
         b[2*x+1] = (COMPOSE_HAARiH0(b[x+w2], tmp[x]) + 1)>>1;\
     }\
 }\
5d50fcc5
 \
 
fd502f4f
 #if HAVE_X86ASM
5d50fcc5
 #if !ARCH_X86_64
 COMPOSE_VERTICAL(_mmx, 4)
 #endif
 COMPOSE_VERTICAL(_sse2, 8)
 
 
3f07f12f
 void ff_horizontal_compose_dd97i_ssse3(int16_t *_b, int16_t *_tmp, int w);
5d50fcc5
 
3f07f12f
 static void horizontal_compose_dd97i_ssse3(uint8_t *_b, uint8_t *_tmp, int w)
5d50fcc5
 {
e985d719
     int w2= w>>1;
     int x= w2 - (w2&7);
3f07f12f
     int16_t *b = (int16_t *)_b;
     int16_t *tmp = (int16_t *)_tmp;
 
e985d719
     ff_horizontal_compose_dd97i_ssse3(b, tmp, w);
 
5d50fcc5
     for (; x < w2; x++) {
         b[2*x  ] = (tmp[x] + 1)>>1;
         b[2*x+1] = (COMPOSE_DD97iH0(tmp[x-1], tmp[x], b[x+w2], tmp[x+1], tmp[x+2]) + 1)>>1;
     }
 }
63bfee87
 #endif
5d50fcc5
 
9fd6ea93
 void ff_spatial_idwt_init_x86(DWTContext *d, enum dwt_type type)
5d50fcc5
 {
fd502f4f
 #if HAVE_X86ASM
4da45aff
   int mm_flags = av_get_cpu_flags();
5d50fcc5
 
 #if !ARCH_X86_64
     if (!(mm_flags & AV_CPU_FLAG_MMX))
         return;
 
     switch (type) {
     case DWT_DIRAC_DD9_7:
52a62f90
         d->vertical_compose_l0 = (void*)vertical_compose53iL0_mmx;
         d->vertical_compose_h0 = (void*)vertical_compose_dd97iH0_mmx;
5d50fcc5
         break;
     case DWT_DIRAC_LEGALL5_3:
52a62f90
         d->vertical_compose_l0 = (void*)vertical_compose53iL0_mmx;
         d->vertical_compose_h0 = (void*)vertical_compose_dirac53iH0_mmx;
5d50fcc5
         break;
     case DWT_DIRAC_DD13_7:
52a62f90
         d->vertical_compose_l0 = (void*)vertical_compose_dd137iL0_mmx;
         d->vertical_compose_h0 = (void*)vertical_compose_dd97iH0_mmx;
5d50fcc5
         break;
     case DWT_DIRAC_HAAR0:
52a62f90
         d->vertical_compose   = (void*)vertical_compose_haar_mmx;
754539a4
         d->horizontal_compose = horizontal_compose_haar0i_mmx;
5d50fcc5
         break;
     case DWT_DIRAC_HAAR1:
52a62f90
         d->vertical_compose   = (void*)vertical_compose_haar_mmx;
754539a4
         d->horizontal_compose = horizontal_compose_haar1i_mmx;
5d50fcc5
         break;
     }
 #endif
 
     if (!(mm_flags & AV_CPU_FLAG_SSE2))
         return;
 
     switch (type) {
     case DWT_DIRAC_DD9_7:
52a62f90
         d->vertical_compose_l0 = (void*)vertical_compose53iL0_sse2;
         d->vertical_compose_h0 = (void*)vertical_compose_dd97iH0_sse2;
5d50fcc5
         break;
     case DWT_DIRAC_LEGALL5_3:
52a62f90
         d->vertical_compose_l0 = (void*)vertical_compose53iL0_sse2;
         d->vertical_compose_h0 = (void*)vertical_compose_dirac53iH0_sse2;
5d50fcc5
         break;
     case DWT_DIRAC_DD13_7:
52a62f90
         d->vertical_compose_l0 = (void*)vertical_compose_dd137iL0_sse2;
         d->vertical_compose_h0 = (void*)vertical_compose_dd97iH0_sse2;
5d50fcc5
         break;
     case DWT_DIRAC_HAAR0:
52a62f90
         d->vertical_compose   = (void*)vertical_compose_haar_sse2;
754539a4
         d->horizontal_compose = horizontal_compose_haar0i_sse2;
5d50fcc5
         break;
     case DWT_DIRAC_HAAR1:
52a62f90
         d->vertical_compose   = (void*)vertical_compose_haar_sse2;
754539a4
         d->horizontal_compose = horizontal_compose_haar1i_sse2;
5d50fcc5
         break;
     }
 
     if (!(mm_flags & AV_CPU_FLAG_SSSE3))
         return;
 
     switch (type) {
     case DWT_DIRAC_DD9_7:
e985d719
         d->horizontal_compose = horizontal_compose_dd97i_ssse3;
5d50fcc5
         break;
     }
fd502f4f
 #endif // HAVE_X86ASM
5d50fcc5
 }