This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lavc/neontest: fix constness in arm/aarch64 avcodec_open2() wrappers
tags/n3.1
Clément Bœsch
9 years ago
parent
8ca78d0fef
commit
dfd0c0f981
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/aarch64/neontest.c
+1
-1
libavcodec/arm/neontest.c
+ 1
- 1
libavcodec/aarch64/neontest.c
View File
@@ -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);
+ 1
- 1
libavcodec/arm/neontest.c
View File
@@ -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);
Write
Preview
Loading…
Cancel
Save