Go to the source code of this file.
|  | 
| #define | PROTO(pre,  in,  out,  cap)   void ff ## pre ## in## _to_ ##out## _a_ ##cap(uint8_t **dst, const uint8_t **src, int len); | 
|  | 
| #define | PROTO2(pre,  out,  cap)   PROTO(pre, int16, out, cap) PROTO(pre, int32, out, cap) PROTO(pre, float, out, cap) | 
|  | 
| #define | PROTO3(pre,  cap)   PROTO2(pre, int16, cap) PROTO2(pre, int32, cap) PROTO2(pre, float, cap) | 
|  | 
| #define | PROTO4(pre)   PROTO3(pre, sse) PROTO3(pre, sse2) PROTO3(pre, ssse3) PROTO3(pre, sse4) PROTO3(pre, avx) PROTO3(pre, avx2) | 
|  | 
| #define | MULTI_CAPS_FUNC(flag,  cap) | 
|  | 
◆ PROTO
      
        
          | #define PROTO | ( |  | pre, | 
        
          |  |  |  | in, | 
        
          |  |  |  | out, | 
        
          |  |  |  | cap | 
        
          |  | ) |  | void ff ## pre ## in## _to_ ##out## _a_ ##cap(uint8_t **dst, const uint8_t **src, int len); | 
      
 
 
◆ PROTO2
      
        
          | #define PROTO2 | ( |  | pre, | 
        
          |  |  |  | out, | 
        
          |  |  |  | cap | 
        
          |  | ) |  | PROTO(pre, int16, out, cap) PROTO(pre, int32, out, cap) PROTO(pre, float, out, cap) | 
      
 
 
◆ PROTO3
◆ PROTO4
◆ MULTI_CAPS_FUNC
      
        
          | #define MULTI_CAPS_FUNC | ( |  | flag, | 
        
          |  |  |  | cap | 
        
          |  | ) |  |  | 
      
 
Value:    if (EXTERNAL_##
flag(mm_flags)) {\
 
            ac->simd_f =  ff_int16_to_int32_a_ ## cap;\
            ac->simd_f =  ff_int32_to_int16_a_ ## cap;\
    }
 
 
◆ swri_audio_convert_init_x86()