FFmpeg
Loading...
Searching...
No Matches
mpegvideo_arm.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2002 Michael Niedermayer
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <assert.h>
22
24#include "libavutil/arm/cpu.h"
25#include "libavcodec/avcodec.h"
28#include "mpegvideo_arm.h"
29#include "asm-offsets.h"
30
31#if HAVE_NEON
32#define CHECK_OFFSET(s, m, o) \
33 static_assert(offsetof(s, m) == o, \
34 "Hardcoded ASM offset of " #s " field " #o " needs to be updated.");
35CHECK_OFFSET(MpegEncContext, y_dc_scale, Y_DC_SCALE);
36CHECK_OFFSET(MpegEncContext, c_dc_scale, C_DC_SCALE);
37CHECK_OFFSET(MpegEncContext, ac_pred, AC_PRED);
38CHECK_OFFSET(MpegEncContext, block_last_index, BLOCK_LAST_INDEX);
39CHECK_OFFSET(MpegEncContext, inter_scantable.raster_end,
41CHECK_OFFSET(MpegEncContext, intra_scantable.raster_end,
43CHECK_OFFSET(MpegEncContext, h263_aic, H263_AIC);
44#endif
45
46void ff_dct_unquantize_h263_inter_neon(const MPVContext *s, int16_t *block,
47 int n, int qscale);
48void ff_dct_unquantize_h263_intra_neon(const MPVContext *s, int16_t *block,
49 int n, int qscale);
50
52{
54
57
58 if (have_neon(cpu_flags)) {
59 s->dct_unquantize_h263_intra = ff_dct_unquantize_h263_intra_neon;
60 s->dct_unquantize_h263_inter = ff_dct_unquantize_h263_inter_neon;
61 }
62}
Libavcodec external API header.
#define s(width, name)
Definition cbs_vp9.c:198
static int16_t block[64]
Definition dct.c:125
#define AC_PRED
Definition asm-offsets.h:27
#define H263_AIC
Definition asm-offsets.h:29
#define Y_DC_SCALE
Definition asm-offsets.h:25
#define C_DC_SCALE
Definition asm-offsets.h:26
#define BLOCK_LAST_INDEX
Definition asm-offsets.h:28
#define INTER_SCANTAB_RASTER_END
Definition asm-offsets.h:30
#define INTRA_SCANTAB_RASTER_END
Definition asm-offsets.h:31
#define have_neon(flags)
Definition cpu.h:26
#define have_armv5te(flags)
Definition cpu.h:25
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
static atomic_int cpu_flags
Definition cpu.c:56
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition cpu.c:109
mpegvideo header.
void ff_dct_unquantize_h263_intra_neon(const MPVContext *s, int16_t *block, int n, int qscale)
av_cold void ff_mpv_unquantize_init_arm(MPVUnquantDSPContext *s, int bitexact)
void ff_dct_unquantize_h263_inter_neon(const MPVContext *s, int16_t *block, int n, int qscale)
void ff_mpv_unquantize_init_armv5te(MPVUnquantDSPContext *s)
MpegEncContext.
Definition mpegvideo.h:67