summaryrefslogtreecommitdiff
path: root/libavcodec/exrdsp.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-09-17 18:56:39 -0300
committerJames Almer <jamrial@gmail.com>2017-09-17 19:01:40 -0300
commit98d7ad085e20f7cd3347bbaff251bd687db733ee (patch)
tree7b9fe6a5e24becd5f55161a9e7dfdc5beb15ecab /libavcodec/exrdsp.h
parent9b8c1224d7e1804b0b750de11e6a8c4648f1e115 (diff)
avcodec/exrdsp: improve the ExrDSPContext->reorder_pixels prototype
Make dst be the first parameter and src const. It's more in line with the rest of the codebase. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/exrdsp.h')
-rw-r--r--libavcodec/exrdsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/exrdsp.h b/libavcodec/exrdsp.h
index 09a76a518e..d8cb002efc 100644
--- a/libavcodec/exrdsp.h
+++ b/libavcodec/exrdsp.h
@@ -23,7 +23,7 @@
#include "libavutil/common.h"
typedef struct ExrDSPContext {
- void (*reorder_pixels)(uint8_t *src, uint8_t *dst, ptrdiff_t size);
+ void (*reorder_pixels)(uint8_t *dst, const uint8_t *src, ptrdiff_t size);
} ExrDSPContext;
void ff_exrdsp_init(ExrDSPContext *c);