summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-06-25 13:41:13 +0200
committerClément Bœsch <u@pkh.me>2016-06-25 13:41:13 +0200
commitdfd0c0f981c58d913f1a7e355b6bfa49ed1d5f46 (patch)
tree5cacdfd9331752653749e64c33786ad0f321adff
parent8ca78d0fefa02e44657ad57adab151b7b71b27d3 (diff)
lavc/neontest: fix constness in arm/aarch64 avcodec_open2() wrappers
-rw-r--r--libavcodec/aarch64/neontest.c2
-rw-r--r--libavcodec/arm/neontest.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aarch64/neontest.c b/libavcodec/aarch64/neontest.c
index 6e41f3736e..b1f1a6d200 100644
--- a/libavcodec/aarch64/neontest.c
+++ b/libavcodec/aarch64/neontest.c
@@ -23,7 +23,7 @@
#include "libavutil/aarch64/neontest.h"
wrap(avcodec_open2(AVCodecContext *avctx,
- AVCodec *codec,
+ const AVCodec *codec,
AVDictionary **options))
{
testneonclobbers(avcodec_open2, avctx, codec, options);
diff --git a/libavcodec/arm/neontest.c b/libavcodec/arm/neontest.c
index a3b5b8e2e3..a81d14dcbf 100644
--- a/libavcodec/arm/neontest.c
+++ b/libavcodec/arm/neontest.c
@@ -23,7 +23,7 @@
#include "libavutil/arm/neontest.h"
wrap(avcodec_open2(AVCodecContext *avctx,
- AVCodec *codec,
+ const AVCodec *codec,
AVDictionary **options))
{
testneonclobbers(avcodec_open2, avctx, codec, options);