Browse Source

lavc/neontest: fix constness in arm/aarch64 avcodec_open2() wrappers

tags/n3.1
Clément Bœsch 9 years ago
parent
commit
dfd0c0f981
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavcodec/aarch64/neontest.c
  2. +1
    -1
      libavcodec/arm/neontest.c

+ 1
- 1
libavcodec/aarch64/neontest.c View File

@@ -23,7 +23,7 @@
#include "libavutil/aarch64/neontest.h" #include "libavutil/aarch64/neontest.h"


wrap(avcodec_open2(AVCodecContext *avctx, wrap(avcodec_open2(AVCodecContext *avctx,
AVCodec *codec,
const AVCodec *codec,
AVDictionary **options)) AVDictionary **options))
{ {
testneonclobbers(avcodec_open2, avctx, codec, options); testneonclobbers(avcodec_open2, avctx, codec, options);


+ 1
- 1
libavcodec/arm/neontest.c View File

@@ -23,7 +23,7 @@
#include "libavutil/arm/neontest.h" #include "libavutil/arm/neontest.h"


wrap(avcodec_open2(AVCodecContext *avctx, wrap(avcodec_open2(AVCodecContext *avctx,
AVCodec *codec,
const AVCodec *codec,
AVDictionary **options)) AVDictionary **options))
{ {
testneonclobbers(avcodec_open2, avctx, codec, options); testneonclobbers(avcodec_open2, avctx, codec, options);


Loading…
Cancel
Save