]> git.sesse.net Git - ffmpeg/blob - libavcodec/arm/hevcdsp_init_arm.c
lavfi: Drop unused and empty header file
[ffmpeg] / libavcodec / arm / hevcdsp_init_arm.c
1 /*
2  * ARM NEON optimised HEVC IDCT
3  * Copyright (c) 2017 Alexandra Hájková
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/attributes.h"
23 #include "libavutil/cpu.h"
24 #include "libavutil/arm/cpu.h"
25
26 #include "libavcodec/hevcdsp.h"
27
28 void ff_hevc_idct_4x4_8_neon(int16_t *coeffs, int col_limit);
29 void ff_hevc_idct_8x8_8_neon(int16_t *coeffs, int col_limit);
30 void ff_hevc_idct_4x4_10_neon(int16_t *coeffs, int col_limit);
31 void ff_hevc_idct_8x8_10_neon(int16_t *coeffs, int col_limit);
32
33 av_cold void ff_hevc_dsp_init_arm(HEVCDSPContext *c, int bit_depth)
34 {
35     int cpu_flags = av_get_cpu_flags();
36
37     if (have_neon(cpu_flags)) {
38         if (bit_depth == 8) {
39             c->idct[0] = ff_hevc_idct_4x4_8_neon;
40             c->idct[1] = ff_hevc_idct_8x8_8_neon;
41         }
42         if (bit_depth == 10) {
43             c->idct[0] = ff_hevc_idct_4x4_10_neon;
44             c->idct[1] = ff_hevc_idct_8x8_10_neon;
45         }
46     }
47 }