diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-28 20:35:58 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-13 05:50:29 -0700 |
commit | 55519926ef855c671d084ccc151056de9e3d3a77 (patch) | |
tree | 110bb9a4de9cc250adce6543086dec9ddeace9cd /libavcodec/x86/h263_loopfilter.asm | |
parent | edd1f833fa145eb9c5026877c699ebe6efca00a0 (diff) | |
download | ffmpeg-55519926ef855c671d084ccc151056de9e3d3a77.tar.gz |
x86: Make function prototype comments in assembly code consistent
This helps grepping for functions, among other things.
Diffstat (limited to 'libavcodec/x86/h263_loopfilter.asm')
-rw-r--r-- | libavcodec/x86/h263_loopfilter.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/h263_loopfilter.asm b/libavcodec/x86/h263_loopfilter.asm index a940aad07a..673f795daa 100644 --- a/libavcodec/x86/h263_loopfilter.asm +++ b/libavcodec/x86/h263_loopfilter.asm @@ -99,7 +99,7 @@ SECTION_TEXT %endmacro INIT_MMX mmx -; void h263_v_loop_filter(uint8_t *src, int stride, int qscale) +; void ff_h263_v_loop_filter_mmx(uint8_t *src, int stride, int qscale) cglobal h263_v_loop_filter, 3,5 movsxdifnidn r1, r1d movsxdifnidn r2, r2d @@ -140,7 +140,7 @@ cglobal h263_v_loop_filter, 3,5 %endmacro -; void h263_h_loop_filter(uint8_t *src, int stride, int qscale) +; void ff_h263_h_loop_filter_mmx(uint8_t *src, int stride, int qscale) INIT_MMX mmx cglobal h263_h_loop_filter, 3,5,0,32 movsxdifnidn r1, r1d |