FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
lossless_videodsp_init.c
Go to the documentation of this file.
1 /*
2  * Lossless video DSP utils
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "config.h"
22 #include "libavutil/x86/asm.h"
23 #include "../lossless_videodsp.h"
24 #include "libavutil/x86/cpu.h"
25 
26 void ff_add_bytes_mmx(uint8_t *dst, uint8_t *src, ptrdiff_t w);
27 void ff_add_bytes_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t w);
28 
29 void ff_add_median_pred_mmxext(uint8_t *dst, const uint8_t *top,
30  const uint8_t *diff, ptrdiff_t w,
31  int *left, int *left_top);
32 void ff_add_median_pred_sse2(uint8_t *dst, const uint8_t *top,
33  const uint8_t *diff, ptrdiff_t w,
34  int *left, int *left_top);
35 
36 int ff_add_left_pred_ssse3(uint8_t *dst, const uint8_t *src,
37  ptrdiff_t w, int left);
39  ptrdiff_t w, int left);
40 
41 int ff_add_left_pred_int16_ssse3(uint16_t *dst, const uint16_t *src, unsigned mask, ptrdiff_t w, unsigned acc);
42 int ff_add_left_pred_int16_sse4(uint16_t *dst, const uint16_t *src, unsigned mask, ptrdiff_t w, unsigned acc);
43 
44 #if HAVE_INLINE_ASM && HAVE_7REGS && ARCH_X86_32
45 static void add_median_pred_cmov(uint8_t *dst, const uint8_t *top,
46  const uint8_t *diff, ptrdiff_t w,
47  int *left, int *left_top)
48 {
49  x86_reg w2 = -w;
50  x86_reg x;
51  int l = *left & 0xff;
52  int tl = *left_top & 0xff;
53  int t;
54  __asm__ volatile (
55  "mov %7, %3 \n"
56  "1: \n"
57  "movzbl (%3, %4), %2 \n"
58  "mov %2, %k3 \n"
59  "sub %b1, %b3 \n"
60  "add %b0, %b3 \n"
61  "mov %2, %1 \n"
62  "cmp %0, %2 \n"
63  "cmovg %0, %2 \n"
64  "cmovg %1, %0 \n"
65  "cmp %k3, %0 \n"
66  "cmovg %k3, %0 \n"
67  "mov %7, %3 \n"
68  "cmp %2, %0 \n"
69  "cmovl %2, %0 \n"
70  "add (%6, %4), %b0 \n"
71  "mov %b0, (%5, %4) \n"
72  "inc %4 \n"
73  "jl 1b \n"
74  : "+&q"(l), "+&q"(tl), "=&r"(t), "=&q"(x), "+&r"(w2)
75  : "r"(dst + w), "r"(diff + w), "rm"(top + w)
76  );
77  *left = l;
78  *left_top = tl;
79 }
80 #endif
81 
83 {
85 
86 #if HAVE_INLINE_ASM && HAVE_7REGS && ARCH_X86_32
87  if (cpu_flags & AV_CPU_FLAG_CMOV)
88  c->add_median_pred = add_median_pred_cmov;
89 #endif
90 
91  if (ARCH_X86_32 && EXTERNAL_MMX(cpu_flags)) {
93  }
94 
95  if (ARCH_X86_32 && EXTERNAL_MMXEXT(cpu_flags)) {
96  /* slower than cmov version on AMD */
97  if (!(cpu_flags & AV_CPU_FLAG_3DNOW))
99  }
100 
101  if (EXTERNAL_SSE2(cpu_flags)) {
104  }
105 
106  if (EXTERNAL_SSSE3(cpu_flags)) {
109  }
110 
111  if (EXTERNAL_SSSE3_FAST(cpu_flags)) {
113  }
114 
115  if (EXTERNAL_SSE4(cpu_flags)) {
117  }
118 }
int(* add_left_pred_int16)(uint16_t *dst, const uint16_t *src, unsigned mask, ptrdiff_t w, unsigned left)
#define EXTERNAL_MMX(flags)
Definition: cpu.h:56
int acc
Definition: yuv2rgb.c:546
#define AV_CPU_FLAG_CMOV
supports cmov instruction
Definition: cpu.h:51
static atomic_int cpu_flags
Definition: cpu.c:48
#define src
Definition: vp8dsp.c:254
int ff_add_left_pred_int16_ssse3(uint16_t *dst, const uint16_t *src, unsigned mask, ptrdiff_t w, unsigned acc)
void ff_add_bytes_mmx(uint8_t *dst, uint8_t *src, ptrdiff_t w)
void(* add_bytes)(uint8_t *dst, uint8_t *src, ptrdiff_t w)
#define EXTERNAL_SSE4(flags)
Definition: cpu.h:68
uint8_t
int ff_add_left_pred_int16_sse4(uint16_t *dst, const uint16_t *src, unsigned mask, ptrdiff_t w, unsigned acc)
#define EXTERNAL_SSE2(flags)
Definition: cpu.h:59
void ff_llviddsp_init_x86(LLVidDSPContext *c)
void ff_add_bytes_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t w)
static const uint16_t mask[17]
Definition: lzw.c:38
void ff_add_median_pred_sse2(uint8_t *dst, const uint8_t *top, const uint8_t *diff, ptrdiff_t w, int *left, int *left_top)
#define AV_CPU_FLAG_3DNOW
AMD 3DNOW.
Definition: cpu.h:32
#define EXTERNAL_SSSE3(flags)
Definition: cpu.h:65
int ff_add_left_pred_unaligned_ssse3(uint8_t *dst, const uint8_t *src, ptrdiff_t w, int left)
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition: cpu.c:89
#define EXTERNAL_MMXEXT(flags)
Definition: cpu.h:57
static double c[64]
void ff_add_median_pred_mmxext(uint8_t *dst, const uint8_t *top, const uint8_t *diff, ptrdiff_t w, int *left, int *left_top)
int x86_reg
Definition: asm.h:72
static av_always_inline int diff(const uint32_t a, const uint32_t b)
int(* add_left_pred)(uint8_t *dst, const uint8_t *src, ptrdiff_t w, int left)
int ff_add_left_pred_ssse3(uint8_t *dst, const uint8_t *src, ptrdiff_t w, int left)
#define EXTERNAL_SSSE3_FAST(flags)
Definition: cpu.h:66
void(* add_median_pred)(uint8_t *dst, const uint8_t *top, const uint8_t *diff, ptrdiff_t w, int *left, int *left_top)