summaryrefslogtreecommitdiffstats
path: root/libvpx/vp9/decoder/vp9_dthread.h
diff options
context:
space:
mode:
authorhkuang <hkuang@google.com>2014-04-10 17:21:41 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-04-10 17:21:41 +0000
commit704338728f68ac5ff7f36186bc4cdff890994959 (patch)
treed4655502ab2768db0858ae72ba2de7b530fa3afd /libvpx/vp9/decoder/vp9_dthread.h
parent7616a7e29066d65ecd1d6f54485360d3964c67bb (diff)
parent4fb68e5dd4e93c7599dc905d861de11ac39c5585 (diff)
downloadandroid_external_libvpx-704338728f68ac5ff7f36186bc4cdff890994959.tar.gz
android_external_libvpx-704338728f68ac5ff7f36186bc4cdff890994959.tar.bz2
android_external_libvpx-704338728f68ac5ff7f36186bc4cdff890994959.zip
am 4fb68e5d: Roll latest libvpx to fix hang when doing adaptive playback.
* commit '4fb68e5dd4e93c7599dc905d861de11ac39c5585': Roll latest libvpx to fix hang when doing adaptive playback.
Diffstat (limited to 'libvpx/vp9/decoder/vp9_dthread.h')
-rw-r--r--libvpx/vp9/decoder/vp9_dthread.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/libvpx/vp9/decoder/vp9_dthread.h b/libvpx/vp9/decoder/vp9_dthread.h
index 6d4450f..005bd7b 100644
--- a/libvpx/vp9/decoder/vp9_dthread.h
+++ b/libvpx/vp9/decoder/vp9_dthread.h
@@ -18,13 +18,12 @@
struct macroblockd;
struct VP9Common;
-struct VP9Decompressor;
+struct VP9Decoder;
typedef struct TileWorkerData {
struct VP9Common *cm;
vp9_reader bit_reader;
DECLARE_ALIGNED(16, struct macroblockd, xd);
- DECLARE_ALIGNED(16, int16_t, dqcoeff[MAX_MB_PLANE][64 * 64]);
// Row-based parallel loopfilter data
LFWorkerData lfdata;
@@ -51,7 +50,7 @@ void vp9_loop_filter_alloc(struct VP9Common *cm, struct VP9LfSyncData *lf_sync,
void vp9_loop_filter_dealloc(struct VP9LfSyncData *lf_sync, int rows);
// Multi-threaded loopfilter that uses the tile threads.
-void vp9_loop_filter_frame_mt(struct VP9Decompressor *pbi,
+void vp9_loop_filter_frame_mt(struct VP9Decoder *pbi,
struct VP9Common *cm,
struct macroblockd *xd,
int frame_filter_level,