From 55519926ef855c671d084ccc151056de9e3d3a77 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 28 Jan 2014 20:35:58 +0100 Subject: x86: Make function prototype comments in assembly code consistent This helps grepping for functions, among other things. --- libavcodec/x86/fpel.asm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'libavcodec/x86/fpel.asm') 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: -- cgit v1.2.3