You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
x86: dsputil_mmx: Remove leftover inline assembly fragments
These became unused in 71155d7b
.
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -756,7 +756,7 @@ static void draw_edges_mmx(uint8_t *buf, int wrap, int width, int height,
|
|||||||
|
|
||||||
|
|
||||||
#if HAVE_YASM
|
#if HAVE_YASM
|
||||||
#define QPEL_OP(OPNAME, ROUNDER, RND, OP, MMX) \
|
#define QPEL_OP(OPNAME, ROUNDER, RND, MMX) \
|
||||||
static void OPNAME ## qpel8_mc00_ ## MMX (uint8_t *dst, uint8_t *src, \
|
static void OPNAME ## qpel8_mc00_ ## MMX (uint8_t *dst, uint8_t *src, \
|
||||||
int stride) \
|
int stride) \
|
||||||
{ \
|
{ \
|
||||||
@@ -1137,17 +1137,9 @@ static void OPNAME ## qpel16_mc22_ ## MMX(uint8_t *dst, uint8_t *src, \
|
|||||||
stride, 16); \
|
stride, 16); \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define PUT_OP(a, b, temp, size) \
|
QPEL_OP(put_, ff_pw_16, _, mmxext)
|
||||||
"mov"#size" "#a", "#b" \n\t"
|
QPEL_OP(avg_, ff_pw_16, _, mmxext)
|
||||||
|
QPEL_OP(put_no_rnd_, ff_pw_15, _no_rnd_, mmxext)
|
||||||
#define AVG_MMXEXT_OP(a, b, temp, size) \
|
|
||||||
"mov"#size" "#b", "#temp" \n\t" \
|
|
||||||
"pavgb "#temp", "#a" \n\t" \
|
|
||||||
"mov"#size" "#a", "#b" \n\t"
|
|
||||||
|
|
||||||
QPEL_OP(put_, ff_pw_16, _, PUT_OP, mmxext)
|
|
||||||
QPEL_OP(avg_, ff_pw_16, _, AVG_MMXEXT_OP, mmxext)
|
|
||||||
QPEL_OP(put_no_rnd_, ff_pw_15, _no_rnd_, PUT_OP, mmxext)
|
|
||||||
#endif /* HAVE_YASM */
|
#endif /* HAVE_YASM */
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user