;* Copyright (c) 2014 Pierre-Edouard LEPERE
;* Copyright (c) 2014 James Almer
;*
-;* This file is part of Libav.
+;* This file is part of FFmpeg.
;*
-;* Libav is free software; you can redistribute it and/or
+;* FFmpeg is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser General Public
;* License as published by the Free Software Foundation; either
;* version 2.1 of the License, or (at your option) any later version.
;*
-;* Libav is distributed in the hope that it will be useful,
+;* FFmpeg is distributed in the hope that it will be useful,
;* but WITHOUT ANY WARRANTY; without even the implied warranty of
;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;* Lesser General Public License for more details.
;*
;* You should have received a copy of the GNU Lesser General Public
-;* License along with Libav; if not, write to the Free Software
+;* License along with FFmpeg; if not, write to the Free Software
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************
%include "libavutil/x86/x86util.asm"
-section .text
+SECTION .text
-; void ff_hevc_idctHxW_dc_{8,10}_<opt>(int16_t *coeffs)
+; void ff_hevc_idct_HxW_dc_{8,10}_<opt>(int16_t *coeffs)
; %1 = HxW
; %2 = number of loops
; %3 = bitdepth
RET
%endmacro
- ; 8-bit
+ %macro INIT_IDCT_DC 1
INIT_MMX mmxext
- IDCT_DC_NL 4, 8
- IDCT_DC 8, 2, 8
+ IDCT_DC_NL 4, %1
+ IDCT_DC 8, 2, %1
INIT_XMM sse2
- IDCT_DC_NL 8, 8
- IDCT_DC 16, 4, 8
- IDCT_DC 32, 16, 8
+ IDCT_DC_NL 8, %1
+ IDCT_DC 16, 4, %1
+ IDCT_DC 32, 16, %1
%if HAVE_AVX2_EXTERNAL
INIT_YMM avx2
- IDCT_DC 16, 2, 8
- IDCT_DC 32, 8, 8
+ IDCT_DC 16, 2, %1
+ IDCT_DC 32, 8, %1
%endif ;HAVE_AVX2_EXTERNAL
+ %endmacro
- ; 10-bit
- INIT_MMX mmxext
- IDCT_DC_NL 4, 10
- IDCT_DC 8, 2, 10
-
- INIT_XMM sse2
- IDCT_DC_NL 8, 10
- IDCT_DC 16, 4, 10
- IDCT_DC 32, 16, 10
-
- %if HAVE_AVX2_EXTERNAL
- INIT_YMM avx2
- IDCT_DC 16, 2, 10
- IDCT_DC 32, 8, 10
- %endif ;HAVE_AVX2_EXTERNAL
-
- ; 12-bit
- INIT_MMX mmxext
- IDCT_DC_NL 4, 12
- IDCT_DC 8, 2, 12
-
- INIT_XMM sse2
- IDCT_DC_NL 8, 12
- IDCT_DC 16, 4, 12
- IDCT_DC 32, 16, 12
-
- %if HAVE_AVX2_EXTERNAL
- INIT_YMM avx2
- IDCT_DC 16, 2, 12
- IDCT_DC 32, 8, 12
- %endif ;HAVE_AVX2_EXTERNAL
+ INIT_IDCT_DC 8
+ INIT_IDCT_DC 10
++INIT_IDCT_DC 12