mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/takdsp: fix const correctness
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
c5029bb193
commit
46775e64f8
@ -25,8 +25,8 @@
|
||||
#include "libavutil/riscv/cpu.h"
|
||||
#include "libavcodec/takdsp.h"
|
||||
|
||||
void ff_decorrelate_ls_rvv(int32_t *p1, int32_t *p2, int length);
|
||||
void ff_decorrelate_sr_rvv(int32_t *p1, int32_t *p2, int length);
|
||||
void ff_decorrelate_ls_rvv(const int32_t *p1, int32_t *p2, int length);
|
||||
void ff_decorrelate_sr_rvv(int32_t *p1, const int32_t *p2, int length);
|
||||
|
||||
av_cold void ff_takdsp_init_riscv(TAKDSPContext *dsp)
|
||||
{
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "takdsp.h"
|
||||
#include "config.h"
|
||||
|
||||
static void decorrelate_ls(int32_t *p1, int32_t *p2, int length)
|
||||
static void decorrelate_ls(const int32_t *p1, int32_t *p2, int length)
|
||||
{
|
||||
int i;
|
||||
|
||||
@ -34,7 +34,7 @@ static void decorrelate_ls(int32_t *p1, int32_t *p2, int length)
|
||||
}
|
||||
}
|
||||
|
||||
static void decorrelate_sr(int32_t *p1, int32_t *p2, int length)
|
||||
static void decorrelate_sr(int32_t *p1, const int32_t *p2, int length)
|
||||
{
|
||||
int i;
|
||||
|
||||
@ -58,7 +58,7 @@ static void decorrelate_sm(int32_t *p1, int32_t *p2, int length)
|
||||
}
|
||||
}
|
||||
|
||||
static void decorrelate_sf(int32_t *p1, int32_t *p2, int length, int dshift, int dfactor)
|
||||
static void decorrelate_sf(int32_t *p1, const int32_t *p2, int length, int dshift, int dfactor)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
@ -22,10 +22,10 @@
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct TAKDSPContext {
|
||||
void (*decorrelate_ls)(int32_t *p1, int32_t *p2, int length);
|
||||
void (*decorrelate_sr)(int32_t *p1, int32_t *p2, int length);
|
||||
void (*decorrelate_ls)(const int32_t *p1, int32_t *p2, int length);
|
||||
void (*decorrelate_sr)(int32_t *p1, const int32_t *p2, int length);
|
||||
void (*decorrelate_sm)(int32_t *p1, int32_t *p2, int length);
|
||||
void (*decorrelate_sf)(int32_t *p1, int32_t *p2, int length, int dshift, int dfactor);
|
||||
void (*decorrelate_sf)(int32_t *p1, const int32_t *p2, int length, int dshift, int dfactor);
|
||||
} TAKDSPContext;
|
||||
|
||||
void ff_takdsp_init(TAKDSPContext *c);
|
||||
|
@ -23,10 +23,10 @@
|
||||
#include "libavutil/x86/cpu.h"
|
||||
#include "config.h"
|
||||
|
||||
void ff_tak_decorrelate_ls_sse2(int32_t *p1, int32_t *p2, int length);
|
||||
void ff_tak_decorrelate_sr_sse2(int32_t *p1, int32_t *p2, int length);
|
||||
void ff_tak_decorrelate_ls_sse2(const int32_t *p1, int32_t *p2, int length);
|
||||
void ff_tak_decorrelate_sr_sse2(int32_t *p1, const int32_t *p2, int length);
|
||||
void ff_tak_decorrelate_sm_sse2(int32_t *p1, int32_t *p2, int length);
|
||||
void ff_tak_decorrelate_sf_sse4(int32_t *p1, int32_t *p2, int length, int dshift, int dfactor);
|
||||
void ff_tak_decorrelate_sf_sse4(int32_t *p1, const int32_t *p2, int length, int dshift, int dfactor);
|
||||
|
||||
av_cold void ff_takdsp_init_x86(TAKDSPContext *c)
|
||||
{
|
||||
|
@ -37,7 +37,7 @@
|
||||
#define BUF_SIZE 1024
|
||||
|
||||
static void test_decorrelate_ls(TAKDSPContext *s) {
|
||||
declare_func(void, int32_t *, int32_t *, int);
|
||||
declare_func(void, const int32_t *, int32_t *, int);
|
||||
|
||||
if (check_func(s->decorrelate_ls, "decorrelate_ls")) {
|
||||
LOCAL_ALIGNED_32(int32_t, p1, [BUF_SIZE]);
|
||||
@ -62,7 +62,7 @@ static void test_decorrelate_ls(TAKDSPContext *s) {
|
||||
}
|
||||
|
||||
static void test_decorrelate_sr(TAKDSPContext *s) {
|
||||
declare_func(void, int32_t *, int32_t *, int);
|
||||
declare_func(void, int32_t *, const int32_t *, int);
|
||||
|
||||
if (check_func(s->decorrelate_sr, "decorrelate_sr")) {
|
||||
LOCAL_ALIGNED_32(int32_t, p1, [BUF_SIZE]);
|
||||
@ -115,7 +115,7 @@ static void test_decorrelate_sm(TAKDSPContext *s) {
|
||||
}
|
||||
|
||||
static void test_decorrelate_sf(TAKDSPContext *s) {
|
||||
declare_func(void, int32_t *, int32_t *, int, int, int);
|
||||
declare_func(void, int32_t *, const int32_t *, int, int, int);
|
||||
|
||||
if (check_func(s->decorrelate_sf, "decorrelate_sf")) {
|
||||
LOCAL_ALIGNED_32(int32_t, p1, [BUF_SIZE]);
|
||||
|
Loading…
Reference in New Issue
Block a user