FFmpeg
Loading...
Searching...
No Matches
bswapdsp.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include <stdint.h>
20
22#include "libavutil/bswap.h"
23#include "bswapdsp.h"
24
25static void bswap_buf(uint32_t *dst, const uint32_t *src, int w)
26{
27 for (int i = 0; i < w; i++)
28 dst[i + 0] = av_bswap32(src[i + 0]);
29}
30
31static void bswap16_buf(uint16_t *dst, const uint16_t *src, int len)
32{
33 while (len--)
34 *dst++ = av_bswap16(*src++);
35}
36
38{
39 c->bswap_buf = bswap_buf;
40 c->bswap16_buf = bswap16_buf;
41
42#if ARCH_RISCV
44#elif ARCH_X86 && HAVE_X86ASM
46#endif
47}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
byte swapping routines
void ff_bswapdsp_init_riscv(BswapDSPContext *c)
void ff_bswapdsp_init_x86(BswapDSPContext *c)
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
static void bswap_buf(uint32_t *dst, const uint32_t *src, int w)
Definition bswapdsp.c:25
av_cold void ff_bswapdsp_init(BswapDSPContext *c)
Definition bswapdsp.c:37
static void bswap16_buf(uint16_t *dst, const uint16_t *src, int len)
Definition bswapdsp.c:31
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
uint8_t w
Definition llvidencdsp.c:39
#define av_bswap32
Definition bswap.h:47
#define av_bswap16
Definition bswap.h:28
#define src
Definition vp8dsp.c:248
int len
static double c[64]