Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2017-03-27 23:47:46 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2017-03-29 01:04:26 +0300
commitf8c019944d45f4ea9786f8690f8a64fd9398ebf3 (patch)
treecaededd7d7de6194be8823b6f92966846cd072bb /libavcodec/aarch64
parent473f0f75a16b4d37bdaa943f75e4ae249212c1ba (diff)
vp9: re-split the decoder/format/dsp interface header files.
The advantage here is that the internal software decoder interface is not exposed to the DSP functions or the hardware accelerations.
Diffstat (limited to 'libavcodec/aarch64')
-rw-r--r--libavcodec/aarch64/vp9dsp_init.h2
-rw-r--r--libavcodec/aarch64/vp9dsp_init_aarch64.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aarch64/vp9dsp_init.h b/libavcodec/aarch64/vp9dsp_init.h
index e288fb482b..9df1752c62 100644
--- a/libavcodec/aarch64/vp9dsp_init.h
+++ b/libavcodec/aarch64/vp9dsp_init.h
@@ -21,7 +21,7 @@
#ifndef AVCODEC_AARCH64_VP9DSP_INIT_H
#define AVCODEC_AARCH64_VP9DSP_INIT_H
-#include "libavcodec/vp9.h"
+#include "libavcodec/vp9dsp.h"
void ff_vp9dsp_init_10bpp_aarch64(VP9DSPContext *dsp);
void ff_vp9dsp_init_12bpp_aarch64(VP9DSPContext *dsp);
diff --git a/libavcodec/aarch64/vp9dsp_init_aarch64.c b/libavcodec/aarch64/vp9dsp_init_aarch64.c
index e27c232b71..91a82d822d 100644
--- a/libavcodec/aarch64/vp9dsp_init_aarch64.c
+++ b/libavcodec/aarch64/vp9dsp_init_aarch64.c
@@ -22,7 +22,7 @@
#include "libavutil/attributes.h"
#include "libavutil/aarch64/cpu.h"
-#include "libavcodec/vp9.h"
+#include "libavcodec/vp9dsp.h"
#include "vp9dsp_init.h"
#define declare_fpel(type, sz) \