Skip to content

Commit

Permalink
avcodec/takdsp: fix const correctness
Browse files Browse the repository at this point in the history
Signed-off-by: James Almer <jamrial@gmail.com>
  • Loading branch information
jamrial committed Dec 22, 2023
1 parent c5029bb commit 46775e6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions libavcodec/riscv/takdsp_init.c
Expand Up @@ -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)
{
Expand Down
6 changes: 3 additions & 3 deletions libavcodec/takdsp.c
Expand Up @@ -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;

Expand All @@ -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;

Expand All @@ -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;

Expand Down
6 changes: 3 additions & 3 deletions libavcodec/takdsp.h
Expand Up @@ -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);
Expand Down
6 changes: 3 additions & 3 deletions libavcodec/x86/takdsp_init.c
Expand Up @@ -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)
{
Expand Down
6 changes: 3 additions & 3 deletions tests/checkasm/takdsp.c
Expand Up @@ -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]);
Expand All @@ -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]);
Expand Down Expand Up @@ -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]);
Expand Down

0 comments on commit 46775e6

Please sign in to comment.