summaryrefslogtreecommitdiff
path: root/libavcodec/x86
diff options
context:
space:
mode:
authorMartin Vignali <martin.vignali@gmail.com>2017-11-06 21:52:37 +0100
committerMartin Vignali <martin.vignali@gmail.com>2017-11-07 00:56:54 +0100
commit0380b72d35a092f3089af52e57dee0d848bc2b9f (patch)
treeb58e17f834c3fe8ac427d2fb01721853da9d8dc2 /libavcodec/x86
parentda62128ea1429daae6c680838d6726e9cfd10972 (diff)
libavcodec/lossless_video_dsp : cosmetic add better separator for each function, in order to make reading of the asm file easier
Diffstat (limited to 'libavcodec/x86')
-rw-r--r--libavcodec/x86/lossless_videodsp.asm9
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/x86/lossless_videodsp.asm b/libavcodec/x86/lossless_videodsp.asm
index 70ed555737..ba4d4f0153 100644
--- a/libavcodec/x86/lossless_videodsp.asm
+++ b/libavcodec/x86/lossless_videodsp.asm
@@ -36,9 +36,11 @@ pb_zzzzzzzz67676767: db -1,-1,-1,-1,-1,-1,-1,-1, 6, 7, 6, 7, 6, 7, 6, 7
SECTION .text
+;------------------------------------------------------------------------------
; void ff_add_median_pred_mmxext(uint8_t *dst, const uint8_t *top,
; const uint8_t *diff, int w,
; int *left, int *left_top)
+;------------------------------------------------------------------------------
%macro MEDIAN_PRED 0
cglobal add_median_pred, 6,6,8, dst, top, diff, w, left, left_top
movu m0, [topq]
@@ -149,7 +151,9 @@ MEDIAN_PRED
RET
%endmacro
+;------------------------------------------------------------------------------
; int ff_add_left_pred(uint8_t *dst, const uint8_t *src, int w, int left)
+;------------------------------------------------------------------------------
INIT_MMX ssse3
cglobal add_left_pred, 3,3,7, dst, src, w, left
.skip_prologue:
@@ -178,6 +182,9 @@ cglobal add_left_pred_unaligned, 3,3,7, dst, src, w, left
.src_unaligned:
ADD_LEFT_LOOP 0, 0
+;------------------------------------------------------------------------------
+; void ff_add_bytes(uint8_t *dst, uint8_t *src, ptrdiff_t w);
+;------------------------------------------------------------------------------
%macro ADD_BYTES 0
cglobal add_bytes, 3,4,2, dst, src, w, size
mov sizeq, wq
@@ -263,7 +270,9 @@ ADD_BYTES
RET
%endmacro
+;---------------------------------------------------------------------------------------------
; int add_left_pred_int16(uint16_t *dst, const uint16_t *src, unsigned mask, int w, int left)
+;---------------------------------------------------------------------------------------------
INIT_MMX ssse3
cglobal add_left_pred_int16, 4,4,8, dst, src, mask, w, left
.skip_prologue: