summaryrefslogtreecommitdiff
path: root/libavcodec/intrax8.h
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-02-19 18:12:06 -0500
committerVittorio Giovara <vittorio.giovara@gmail.com>2016-03-25 15:52:24 -0400
commit68127e1bf8037a6e0acd6401cc8c5da950e3fa0a (patch)
tree7e79655bdd06f656b0deb39a831a1aa814d8c204 /libavcodec/intrax8.h
parent65127450add50c3bca307edc0517d2e8382717a0 (diff)
intrax8: Keep a reference to the context idctdsp
Use it instead of the embedded mpegvideo one. Update init function signature to load it directly from the callers.
Diffstat (limited to 'libavcodec/intrax8.h')
-rw-r--r--libavcodec/intrax8.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/intrax8.h b/libavcodec/intrax8.h
index e2532f8696..ef88d83d3c 100644
--- a/libavcodec/intrax8.h
+++ b/libavcodec/intrax8.h
@@ -21,6 +21,7 @@
#include "get_bits.h"
#include "mpegvideo.h"
+#include "idctdsp.h"
#include "intrax8dsp.h"
typedef struct IntraX8Context {
@@ -37,6 +38,7 @@ typedef struct IntraX8Context {
// set by the caller codec
MpegEncContext *s;
IntraX8DSPContext dsp;
+ IDCTDSPContext idsp;
int quant;
int dquant;
int qsum;
@@ -61,10 +63,12 @@ typedef struct IntraX8Context {
* Initialize IntraX8 frame decoder.
* Requires valid MpegEncContext with valid s->mb_width before calling.
* @param w pointer to IntraX8Context
+ * @param idsp pointer to IDCTDSPContext
* @param s pointer to MpegEncContext of the parent codec
* @return 0 on success, a negative AVERROR value on error
*/
-int ff_intrax8_common_init(IntraX8Context *w, MpegEncContext *const s);
+int ff_intrax8_common_init(IntraX8Context *w, IDCTDSPContext *idsp,
+ MpegEncContext *const s);
/**
* Destroy IntraX8 frame structure.