summaryrefslogtreecommitdiffstats
path: root/third_party/aom/av1/decoder/dthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/aom/av1/decoder/dthread.h')
-rw-r--r--third_party/aom/av1/decoder/dthread.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/third_party/aom/av1/decoder/dthread.h b/third_party/aom/av1/decoder/dthread.h
index c17053d9c..33d89006e 100644
--- a/third_party/aom/av1/decoder/dthread.h
+++ b/third_party/aom/av1/decoder/dthread.h
@@ -12,7 +12,8 @@
#ifndef AV1_DECODER_DTHREAD_H_
#define AV1_DECODER_DTHREAD_H_
-#include "./aom_config.h"
+#include "config/aom_config.h"
+
#include "aom_util/aom_thread.h"
#include "aom/internal/aom_codec_internal.h"
@@ -22,6 +23,13 @@ extern "C" {
struct AV1Common;
struct AV1Decoder;
+struct ThreadData;
+
+typedef struct DecWorkerData {
+ struct ThreadData *td;
+ const uint8_t *data_end;
+ struct aom_internal_error_info error_info;
+} DecWorkerData;
// WorkerData for the FrameWorker thread. It contains all the information of
// the worker and decode structures for decoding a frame.