diff --git a/vp9/decoder/vp9_decodeframe.c b/vp9/decoder/vp9_decodeframe.c index d2485b66ac5b8546d117e6cceaa4bf347cc02480..c04de5d0f2f099e7c107a45d2cad9ed80d82f80d 100644 --- a/vp9/decoder/vp9_decodeframe.c +++ b/vp9/decoder/vp9_decodeframe.c @@ -35,7 +35,7 @@ #include "vp9/decoder/vp9_decodemv.h" #include "vp9/decoder/vp9_dsubexp.h" #include "vp9/decoder/vp9_dthread.h" -#include "vp9/decoder/vp9_onyxd_int.h" +#include "vp9/decoder/vp9_onyxd.h" #include "vp9/decoder/vp9_read_bit_buffer.h" #include "vp9/decoder/vp9_reader.h" #include "vp9/decoder/vp9_thread.h" diff --git a/vp9/decoder/vp9_decodemv.c b/vp9/decoder/vp9_decodemv.c index 0fb7a158019db67d58d10fa40f45e47540876334..9bc21d2710729aa42205610149e8f5e43298bd89 100644 --- a/vp9/decoder/vp9_decodemv.c +++ b/vp9/decoder/vp9_decodemv.c @@ -21,7 +21,6 @@ #include "vp9/decoder/vp9_decodemv.h" #include "vp9/decoder/vp9_decodeframe.h" -#include "vp9/decoder/vp9_onyxd_int.h" #include "vp9/decoder/vp9_reader.h" static MB_PREDICTION_MODE read_intra_mode(vp9_reader *r, const vp9_prob *p) { diff --git a/vp9/decoder/vp9_decodemv.h b/vp9/decoder/vp9_decodemv.h index 539c9840e906604107a6037798423a2548fd6474..7394b62b4517b10dfd74c47c0a3e7df1e50c07fc 100644 --- a/vp9/decoder/vp9_decodemv.h +++ b/vp9/decoder/vp9_decodemv.h @@ -11,7 +11,6 @@ #ifndef VP9_DECODER_VP9_DECODEMV_H_ #define VP9_DECODER_VP9_DECODEMV_H_ -#include "vp9/decoder/vp9_onyxd_int.h" #include "vp9/decoder/vp9_reader.h" #ifdef __cplusplus diff --git a/vp9/decoder/vp9_detokenize.h b/vp9/decoder/vp9_detokenize.h index ce3d7653dfec44a594cc6bd3fd8a32584fa719d9..c5198a216951ecd21c432a2c1ee9413fc676fff8 100644 --- a/vp9/decoder/vp9_detokenize.h +++ b/vp9/decoder/vp9_detokenize.h @@ -12,7 +12,7 @@ #ifndef VP9_DECODER_VP9_DETOKENIZE_H_ #define VP9_DECODER_VP9_DETOKENIZE_H_ -#include "vp9/decoder/vp9_onyxd_int.h" +#include "vp9/decoder/vp9_onyxd.h" #include "vp9/decoder/vp9_reader.h" #ifdef __cplusplus diff --git a/vp9/decoder/vp9_dthread.c b/vp9/decoder/vp9_dthread.c index 542732aa0ebf1a035e6578c42df3127c10938467..2e00a8bb5f4304558c8ce3691f2b882a7052ff3d 100644 --- a/vp9/decoder/vp9_dthread.c +++ b/vp9/decoder/vp9_dthread.c @@ -9,10 +9,13 @@ */ #include "./vpx_config.h" + +#include "vpx_mem/vpx_mem.h" + #include "vp9/common/vp9_reconinter.h" + #include "vp9/decoder/vp9_dthread.h" -#include "vp9/decoder/vp9_onyxd_int.h" -#include "vpx_mem/vpx_mem.h" +#include "vp9/decoder/vp9_onyxd.h" #if CONFIG_MULTITHREAD static INLINE void mutex_lock(pthread_mutex_t *const mutex) { diff --git a/vp9/decoder/vp9_onyxd.h b/vp9/decoder/vp9_onyxd.h index 203e9fae9b6e36ff4cf12a12b141b7ee6546dd23..5ea251bd730ff08175c7668d1856c4fe6316ee90 100644 --- a/vp9/decoder/vp9_onyxd.h +++ b/vp9/decoder/vp9_onyxd.h @@ -11,16 +11,22 @@ #ifndef VP9_DECODER_VP9_ONYXD_H_ #define VP9_DECODER_VP9_ONYXD_H_ +#include "./vpx_config.h" + +#include "vpx/vpx_codec.h" #include "vpx_scale/yv12config.h" + +#include "vp9/common/vp9_onyxc_int.h" #include "vp9/common/vp9_ppflags.h" -#include "vpx/vpx_codec.h" + +#include "vp9/decoder/vp9_dthread.h" +#include "vp9/decoder/vp9_onyxd.h" +#include "vp9/decoder/vp9_thread.h" #ifdef __cplusplus extern "C" { #endif -struct VP9Decompressor; - typedef struct { int width; int height; @@ -37,6 +43,44 @@ typedef enum { VP9_ALT_FLAG = 4 } VP9_REFFRAME; +typedef struct VP9Decompressor { + DECLARE_ALIGNED(16, MACROBLOCKD, mb); + + DECLARE_ALIGNED(16, VP9_COMMON, common); + + DECLARE_ALIGNED(16, int16_t, dqcoeff[MAX_MB_PLANE][64 * 64]); + + VP9D_CONFIG oxcf; + + const uint8_t *source; + size_t source_sz; + + int64_t last_time_stamp; + int ready_for_new_data; + + int refresh_frame_flags; + + int decoded_key_frame; + + int initial_width; + int initial_height; + + int do_loopfilter_inline; // apply loopfilter to available rows immediately + VP9Worker lf_worker; + + VP9Worker *tile_workers; + int num_tile_workers; + + VP9LfSync lf_row_sync; + + /* Each tile column has its own MODE_INFO stream. This array indexes them by + tile column index. */ + MODE_INFO **mi_streams; + + ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; + PARTITION_CONTEXT *above_seg_context; +} VP9D_COMP; + void vp9_initialize_dec(); int vp9_receive_compressed_data(struct VP9Decompressor *pbi, diff --git a/vp9/decoder/vp9_onyxd_if.c b/vp9/decoder/vp9_onyxd_if.c index 24248a458c5554fd0a79d49bc366d91447e0b58c..70528885e27429a98b99e05420aabd70ac84541c 100644 --- a/vp9/decoder/vp9_onyxd_if.c +++ b/vp9/decoder/vp9_onyxd_if.c @@ -17,7 +17,6 @@ #include "vp9/common/vp9_postproc.h" #endif #include "vp9/decoder/vp9_onyxd.h" -#include "vp9/decoder/vp9_onyxd_int.h" #include "vpx_mem/vpx_mem.h" #include "vp9/common/vp9_alloccommon.h" #include "vp9/common/vp9_loopfilter.h" diff --git a/vp9/decoder/vp9_onyxd_int.h b/vp9/decoder/vp9_onyxd_int.h deleted file mode 100644 index 6c6c239265892829d4161e2c49fa3a66d27ed1b8..0000000000000000000000000000000000000000 --- a/vp9/decoder/vp9_onyxd_int.h +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright (c) 2010 The WebM project authors. All Rights Reserved. - * - * Use of this source code is governed by a BSD-style license - * that can be found in the LICENSE file in the root of the source - * tree. An additional intellectual property rights grant can be found - * in the file PATENTS. All contributing project authors may - * be found in the AUTHORS file in the root of the source tree. - */ - -#ifndef VP9_DECODER_VP9_ONYXD_INT_H_ -#define VP9_DECODER_VP9_ONYXD_INT_H_ - -#include "./vpx_config.h" - -#include "vp9/common/vp9_onyxc_int.h" -#include "vp9/decoder/vp9_dthread.h" -#include "vp9/decoder/vp9_onyxd.h" -#include "vp9/decoder/vp9_thread.h" - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct VP9Decompressor { - DECLARE_ALIGNED(16, MACROBLOCKD, mb); - - DECLARE_ALIGNED(16, VP9_COMMON, common); - - DECLARE_ALIGNED(16, int16_t, dqcoeff[MAX_MB_PLANE][64 * 64]); - - VP9D_CONFIG oxcf; - - const uint8_t *source; - size_t source_sz; - - int64_t last_time_stamp; - int ready_for_new_data; - - int refresh_frame_flags; - - int decoded_key_frame; - - int initial_width; - int initial_height; - - int do_loopfilter_inline; // apply loopfilter to available rows immediately - VP9Worker lf_worker; - - VP9Worker *tile_workers; - int num_tile_workers; - - VP9LfSync lf_row_sync; - - /* Each tile column has its own MODE_INFO stream. This array indexes them by - tile column index. */ - MODE_INFO **mi_streams; - - ENTROPY_CONTEXT *above_context[MAX_MB_PLANE]; - PARTITION_CONTEXT *above_seg_context; -} VP9D_COMP; - -#ifdef __cplusplus -} // extern "C" -#endif - -#endif // VP9_DECODER_VP9_ONYXD_INT_H_ diff --git a/vp9/vp9_dx_iface.c b/vp9/vp9_dx_iface.c index 83d64b8c0f92722e61ad2580094176a6e804e8cc..a9e6a882dab85f680b6ebfc9f9abb0e9f6f3fa80 100644 --- a/vp9/vp9_dx_iface.c +++ b/vp9/vp9_dx_iface.c @@ -17,7 +17,6 @@ #include "./vpx_version.h" #include "vp9/common/vp9_frame_buffers.h" #include "vp9/decoder/vp9_onyxd.h" -#include "vp9/decoder/vp9_onyxd_int.h" #include "vp9/decoder/vp9_read_bit_buffer.h" #include "vp9/vp9_iface_common.h" diff --git a/vp9/vp9dx.mk b/vp9/vp9dx.mk index de210f4b77f2b7c451a9893f75d199b969ae099a..4967baf64bcaea68cdc2f38505a04682878b0785 100644 --- a/vp9/vp9dx.mk +++ b/vp9/vp9dx.mk @@ -29,7 +29,6 @@ VP9_DX_SRCS-yes += decoder/vp9_read_bit_buffer.h VP9_DX_SRCS-yes += decoder/vp9_decodemv.h VP9_DX_SRCS-yes += decoder/vp9_detokenize.h VP9_DX_SRCS-yes += decoder/vp9_onyxd.h -VP9_DX_SRCS-yes += decoder/vp9_onyxd_int.h VP9_DX_SRCS-yes += decoder/vp9_thread.c VP9_DX_SRCS-yes += decoder/vp9_thread.h VP9_DX_SRCS-yes += decoder/vp9_onyxd_if.c