summaryrefslogtreecommitdiff
path: root/libavcodec/x86/fpel.asm
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-01-28 20:35:58 +0100
committerDiego Biurrun <diego@biurrun.de>2014-03-13 05:50:29 -0700
commit55519926ef855c671d084ccc151056de9e3d3a77 (patch)
tree110bb9a4de9cc250adce6543086dec9ddeace9cd /libavcodec/x86/fpel.asm
parentedd1f833fa145eb9c5026877c699ebe6efca00a0 (diff)
x86: Make function prototype comments in assembly code consistent
This helps grepping for functions, among other things.
Diffstat (limited to 'libavcodec/x86/fpel.asm')
-rw-r--r--libavcodec/x86/fpel.asm9
1 files changed, 6 insertions, 3 deletions
diff --git a/libavcodec/x86/fpel.asm b/libavcodec/x86/fpel.asm
index b248764b58..b581471296 100644
--- a/libavcodec/x86/fpel.asm
+++ b/libavcodec/x86/fpel.asm
@@ -26,7 +26,8 @@
SECTION .text
INIT_MMX mmxext
-; void pixels(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
+; void ff_put/avg_pixels(uint8_t *block, const uint8_t *pixels,
+; ptrdiff_t line_size, int h)
%macro PIXELS48 2
%if %2 == 4
%define OP movh
@@ -65,7 +66,8 @@ PIXELS48 avg, 8
INIT_XMM sse2
-; void put_pixels16_sse2(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
+; void ff_put_pixels16_sse2(uint8_t *block, const uint8_t *pixels,
+; ptrdiff_t line_size, int h)
cglobal put_pixels16, 4,5,4
lea r4, [r2*3]
.loop:
@@ -83,7 +85,8 @@ cglobal put_pixels16, 4,5,4
jnz .loop
REP_RET
-; void avg_pixels16_sse2(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h)
+; void ff_avg_pixels16_sse2(uint8_t *block, const uint8_t *pixels,
+; ptrdiff_t line_size, int h)
cglobal avg_pixels16, 4,5,4
lea r4, [r2*3]
.loop: