Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-08 03:07:36 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-11 15:18:54 +0300
commit42921190cbe2aedcecf1829b6d3bf8f9c80bfe42 (patch)
tree5f08516166e2ab6150fa7583dfd194525e7a4d60 /tests
parent18afaa20f15a6624b47047c0002b01c57da2fd7e (diff)
checkasm/audiodsp: Be strict about MMX
There is no MMX code for audiodsp after commit 3d716d38abdae1982e84e30becb57458244656bd, so use declare_func instead of declare_func_emms() to also test that we are not in MMX mode after return. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/audiodsp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/checkasm/audiodsp.c b/tests/checkasm/audiodsp.c
index d3a5604299..7980b550d2 100644
--- a/tests/checkasm/audiodsp.c
+++ b/tests/checkasm/audiodsp.c
@@ -61,7 +61,7 @@ void checkasm_check_audiodsp(void)
unsigned int len_bits_minus4, v1_bits, v2_bits, len;
int32_t res0, res1;
- declare_func_emms(AV_CPU_FLAG_MMX, int32_t, const int16_t *v1, const int16_t *v2, int len);
+ declare_func(int32_t, const int16_t *v1, const int16_t *v2, int len);
// generate random 5-12bit vector length
len_bits_minus4 = rnd() % 8;
@@ -90,8 +90,8 @@ void checkasm_check_audiodsp(void)
int32_t val1, val2, min, max;
int len;
- declare_func_emms(AV_CPU_FLAG_MMX, void, int32_t *dst, const int32_t *src,
- int32_t min, int32_t max, unsigned int len);
+ declare_func(void, int32_t *dst, const int32_t *src,
+ int32_t min, int32_t max, unsigned int len);
val1 = ((int32_t)rnd());
val1 = FFSIGN(val1) * (val1 & ((1 << 24) - 1));
@@ -120,8 +120,8 @@ void checkasm_check_audiodsp(void)
float val1, val2, min, max;
int i, len;
- declare_func_emms(AV_CPU_FLAG_MMX, void, float *dst, const float *src,
- int len, float min, float max);
+ declare_func(void, float *dst, const float *src,
+ int len, float min, float max);
val1 = (float)rnd() / (UINT_MAX >> 1) - 1.0f;
val2 = (float)rnd() / (UINT_MAX >> 1) - 1.0f;