2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2012-11-30 01:36:10 +01:00
|
|
|
#ifndef VP9_COMMON_VP9_ONYXC_INT_H_
|
|
|
|
#define VP9_COMMON_VP9_ONYXC_INT_H_
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-09-30 03:10:03 +02:00
|
|
|
#include "./vpx_config.h"
|
2010-05-24 17:39:59 +02:00
|
|
|
#include "vpx/internal/vpx_codec_internal.h"
|
2013-09-30 03:10:03 +02:00
|
|
|
#include "./vp9_rtcd.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_loopfilter.h"
|
|
|
|
#include "vp9/common/vp9_entropymv.h"
|
|
|
|
#include "vp9/common/vp9_entropy.h"
|
|
|
|
#include "vp9/common/vp9_entropymode.h"
|
2014-02-06 02:44:42 +01:00
|
|
|
#include "vp9/common/vp9_frame_buffers.h"
|
2013-04-30 22:39:50 +02:00
|
|
|
#include "vp9/common/vp9_quant_common.h"
|
2015-01-27 21:26:28 +01:00
|
|
|
#include "vp9/common/vp9_thread.h"
|
2013-10-25 17:18:04 +02:00
|
|
|
#include "vp9/common/vp9_tile_common.h"
|
2013-04-03 00:08:50 +02:00
|
|
|
|
2013-09-04 19:02:08 +02:00
|
|
|
#if CONFIG_VP9_POSTPROC
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/common/vp9_postproc.h"
|
2011-08-01 22:42:14 +02:00
|
|
|
#endif
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-12-06 01:23:09 +01:00
|
|
|
#define REFS_PER_FRAME 3
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-12-06 01:23:09 +01:00
|
|
|
#define REF_FRAMES_LOG2 3
|
|
|
|
#define REF_FRAMES (1 << REF_FRAMES_LOG2)
|
2013-04-09 19:17:22 +02:00
|
|
|
|
2015-01-27 21:26:28 +01:00
|
|
|
// 4 scratch frames for the new frames to support a maximum of 4 cores decoding
|
|
|
|
// in parallel, 3 for scaled references on the encoder.
|
|
|
|
// TODO(hkuang): Add ondemand frame buffers instead of hardcoding the number
|
|
|
|
// of framebuffers.
|
2013-02-20 21:34:31 +01:00
|
|
|
// TODO(jkoleszar): These 3 extra references could probably come from the
|
|
|
|
// normal reference pool.
|
2015-01-27 21:26:28 +01:00
|
|
|
#define FRAME_BUFFERS (REF_FRAMES + 7)
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-12-06 01:23:09 +01:00
|
|
|
#define FRAME_CONTEXTS_LOG2 2
|
|
|
|
#define FRAME_CONTEXTS (1 << FRAME_CONTEXTS_LOG2)
|
2013-01-16 00:57:11 +01:00
|
|
|
|
2015-01-27 21:26:28 +01:00
|
|
|
#define NUM_PING_PONG_BUFFERS 2
|
|
|
|
|
2013-11-17 15:58:08 +01:00
|
|
|
extern const struct {
|
|
|
|
PARTITION_CONTEXT above;
|
|
|
|
PARTITION_CONTEXT left;
|
|
|
|
} partition_context_lookup[BLOCK_SIZES];
|
|
|
|
|
2013-07-24 02:02:08 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
typedef enum {
|
2013-11-23 01:35:37 +01:00
|
|
|
SINGLE_REFERENCE = 0,
|
|
|
|
COMPOUND_REFERENCE = 1,
|
|
|
|
REFERENCE_MODE_SELECT = 2,
|
|
|
|
REFERENCE_MODES = 3,
|
|
|
|
} REFERENCE_MODE;
|
Dual 16x16 inter prediction.
This patch introduces the concept of dual inter16x16 prediction. A
16x16 inter-predicted macroblock can use 2 references instead of 1,
where both references use the same mvmode (new, near/est, zero). In the
case of newmv, this means that two MVs are coded instead of one. The
frame can be encoded in 3 ways: all MBs single-prediction, all MBs dual
prediction, or per-MB single/dual prediction selection ("hybrid"), in
which case a single bit is coded per-MB to indicate whether the MB uses
single or dual inter prediction.
In the future, we can (maybe?) get further gains by mixing this with
Adrian's 32x32 work, per-segment dual prediction settings, or adding
support for dual splitmv/8x8mv inter prediction.
Gain (on derf-set, CQ mode) is ~2.8% (SSIM) or ~3.6% (glb PSNR). Most
gain is at medium/high bitrates, but there's minor gains at low bitrates
also. Output was confirmed to match between encoder and decoder.
Note for optimization people: this patch introduces a 2nd version of
16x16/8x8 sixtap/bilin functions, which does an avg instead of a
store. They may want to look and make sure this is implemented to
their satisfaction so we can optimize it best in the future.
Change-ID: I59dc84b07cbb3ccf073ac0f756d03d294cb19281
2011-12-06 20:53:02 +01:00
|
|
|
|
2014-10-28 00:19:04 +01:00
|
|
|
typedef struct {
|
|
|
|
int_mv mv[2];
|
|
|
|
MV_REFERENCE_FRAME ref_frame[2];
|
|
|
|
} MV_REF;
|
2014-01-29 21:48:01 +01:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int ref_count;
|
2014-10-28 00:19:04 +01:00
|
|
|
MV_REF *mvs;
|
|
|
|
int mi_rows;
|
|
|
|
int mi_cols;
|
2014-02-06 02:44:42 +01:00
|
|
|
vpx_codec_frame_buffer_t raw_frame_buffer;
|
2014-01-29 21:48:01 +01:00
|
|
|
YV12_BUFFER_CONFIG buf;
|
2015-01-27 21:26:28 +01:00
|
|
|
|
|
|
|
// The Following variables will only be used in frame parallel decode.
|
|
|
|
|
|
|
|
// frame_worker_owner indicates which FrameWorker owns this buffer. NULL means
|
|
|
|
// that no FrameWorker owns, or is decoding, this buffer.
|
|
|
|
VP9Worker *frame_worker_owner;
|
|
|
|
|
|
|
|
// row and col indicate which position frame has been decoded to in real
|
|
|
|
// pixel unit. They are reset to -1 when decoding begins and set to INT_MAX
|
|
|
|
// when the frame is fully decoded.
|
|
|
|
int row;
|
|
|
|
int col;
|
2014-01-29 21:48:01 +01:00
|
|
|
} RefCntBuffer;
|
|
|
|
|
2015-03-17 00:17:51 +01:00
|
|
|
typedef struct BufferPool {
|
2015-01-27 21:26:28 +01:00
|
|
|
// Protect BufferPool from being accessed by several FrameWorkers at
|
|
|
|
// the same time during frame parallel decode.
|
|
|
|
// TODO(hkuang): Try to use atomic variable instead of locking the whole pool.
|
|
|
|
#if CONFIG_MULTITHREAD
|
|
|
|
pthread_mutex_t pool_mutex;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Private data associated with the frame buffer callbacks.
|
|
|
|
void *cb_priv;
|
|
|
|
|
|
|
|
vpx_get_frame_buffer_cb_fn_t get_fb_cb;
|
|
|
|
vpx_release_frame_buffer_cb_fn_t release_fb_cb;
|
|
|
|
|
|
|
|
RefCntBuffer frame_bufs[FRAME_BUFFERS];
|
|
|
|
|
|
|
|
// Frame buffers allocated internally by the codec.
|
|
|
|
InternalFrameBufferList int_frame_buffers;
|
|
|
|
} BufferPool;
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
typedef struct VP9Common {
|
2012-07-14 00:21:29 +02:00
|
|
|
struct vpx_internal_error_info error;
|
2015-01-13 19:07:20 +01:00
|
|
|
vpx_color_space_t color_space;
|
2013-03-21 00:41:30 +01:00
|
|
|
int width;
|
|
|
|
int height;
|
2013-03-14 22:36:08 +01:00
|
|
|
int display_width;
|
|
|
|
int display_height;
|
2013-02-20 21:34:31 +01:00
|
|
|
int last_width;
|
|
|
|
int last_height;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-05-07 00:52:06 +02:00
|
|
|
// TODO(jkoleszar): this implies chroma ss right now, but could vary per
|
|
|
|
// plane. Revisit as part of the future change to YV12_BUFFER_CONFIG to
|
|
|
|
// support additional planes.
|
|
|
|
int subsampling_x;
|
|
|
|
int subsampling_y;
|
|
|
|
|
2014-08-26 21:35:15 +02:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
int use_highbitdepth; // Marks if we need to use 16bit frame buffers.
|
|
|
|
#endif
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
YV12_BUFFER_CONFIG *frame_to_show;
|
2014-10-28 00:19:04 +01:00
|
|
|
RefCntBuffer *prev_frame;
|
|
|
|
|
|
|
|
// TODO(hkuang): Combine this with cur_buf in macroblockd.
|
|
|
|
RefCntBuffer *cur_frame;
|
2014-01-29 21:48:01 +01:00
|
|
|
|
2013-12-06 01:23:09 +01:00
|
|
|
int ref_frame_map[REF_FRAMES]; /* maps fb_idx to reference slot */
|
2013-01-16 21:19:42 +01:00
|
|
|
|
2015-01-27 21:26:28 +01:00
|
|
|
// Prepare ref_frame_map for the next frame.
|
|
|
|
// Only used in frame parallel decode.
|
|
|
|
int next_ref_frame_map[REF_FRAMES];
|
|
|
|
|
2013-04-25 02:20:53 +02:00
|
|
|
// TODO(jkoleszar): could expand active_ref_idx to 4, with 0 as intra, and
|
|
|
|
// roll new_fb_idx into it.
|
|
|
|
|
2013-12-06 01:23:09 +01:00
|
|
|
// Each frame can reference REFS_PER_FRAME buffers
|
2013-12-28 03:44:19 +01:00
|
|
|
RefBuffer frame_refs[REFS_PER_FRAME];
|
|
|
|
|
2013-01-15 22:49:44 +01:00
|
|
|
int new_fb_idx;
|
2013-04-25 02:20:53 +02:00
|
|
|
|
2014-12-11 03:12:29 +01:00
|
|
|
#if CONFIG_VP9_POSTPROC
|
2012-07-14 00:21:29 +02:00
|
|
|
YV12_BUFFER_CONFIG post_proc_buffer;
|
2014-12-02 21:14:47 +01:00
|
|
|
YV12_BUFFER_CONFIG post_proc_buffer_int;
|
2014-12-11 03:12:29 +01:00
|
|
|
#endif
|
2011-06-10 13:10:21 +02:00
|
|
|
|
2013-09-30 03:10:03 +02:00
|
|
|
FRAME_TYPE last_frame_type; /* last frame's frame type for motion search.*/
|
2012-07-14 00:21:29 +02:00
|
|
|
FRAME_TYPE frame_type;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int show_frame;
|
2013-04-19 22:32:15 +02:00
|
|
|
int last_show_frame;
|
2013-12-05 10:42:47 +01:00
|
|
|
int show_existing_frame;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-05-30 02:16:00 +02:00
|
|
|
// Flag signaling that the frame is encoded using only INTRA modes.
|
|
|
|
int intra_only;
|
|
|
|
|
2013-10-21 19:12:14 +02:00
|
|
|
int allow_high_precision_mv;
|
|
|
|
|
2013-05-30 02:16:00 +02:00
|
|
|
// Flag signaling that the frame context should be reset to default values.
|
2013-06-08 00:55:15 +02:00
|
|
|
// 0 or 1 implies don't reset, 2 reset just the context specified in the
|
|
|
|
// frame header, 3 reset all contexts.
|
2013-05-30 02:16:00 +02:00
|
|
|
int reset_frame_context;
|
|
|
|
|
2013-04-26 20:57:17 +02:00
|
|
|
// MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in
|
2013-05-05 07:09:43 +02:00
|
|
|
// MODE_INFO (8-pixel) units.
|
2012-07-14 00:21:29 +02:00
|
|
|
int MBs;
|
2013-04-26 20:57:17 +02:00
|
|
|
int mb_rows, mi_rows;
|
|
|
|
int mb_cols, mi_cols;
|
2014-04-02 01:18:47 +02:00
|
|
|
int mi_stride;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* profile settings */
|
2013-07-19 20:37:13 +02:00
|
|
|
TX_MODE tx_mode;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int base_qindex;
|
2013-04-17 00:05:52 +02:00
|
|
|
int y_dc_delta_q;
|
|
|
|
int uv_dc_delta_q;
|
|
|
|
int uv_ac_delta_q;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
/* We allocate a MODE_INFO struct for each macroblock, together with
|
|
|
|
an extra row on top and column on the left to simplify prediction. */
|
2014-08-12 20:24:24 +02:00
|
|
|
int mi_alloc_size;
|
2012-07-14 00:21:29 +02:00
|
|
|
MODE_INFO *mip; /* Base of allocated array */
|
|
|
|
MODE_INFO *mi; /* Corresponds to upper left visible macroblock */
|
2014-11-03 20:23:22 +01:00
|
|
|
|
|
|
|
// TODO(agrange): Move prev_mi into encoder structure.
|
|
|
|
// prev_mip and prev_mi will only be allocated in VP9 encoder.
|
2012-07-14 00:21:29 +02:00
|
|
|
MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */
|
|
|
|
MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-11-03 20:23:22 +01:00
|
|
|
// Separate mi functions between encoder and decoder.
|
|
|
|
int (*alloc_mi)(struct VP9Common *cm, int mi_size);
|
|
|
|
void (*free_mi)(struct VP9Common *cm);
|
|
|
|
void (*setup_mi)(struct VP9Common *cm);
|
|
|
|
|
2015-04-21 14:36:58 +02:00
|
|
|
// Grid of pointers to 8x8 MODE_INFO structs. Any 8x8 not in the visible
|
|
|
|
// area will be NULL.
|
|
|
|
MODE_INFO **mi_grid_base;
|
|
|
|
MODE_INFO **mi_grid_visible;
|
|
|
|
MODE_INFO **prev_mi_grid_base;
|
|
|
|
MODE_INFO **prev_mi_grid_visible;
|
2014-10-28 00:19:04 +01:00
|
|
|
|
|
|
|
// Whether to use previous frame's motion vectors for prediction.
|
|
|
|
int use_prev_frame_mvs;
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Persistent mb segment id map used in prediction.
|
2015-01-27 21:26:28 +01:00
|
|
|
int seg_map_idx;
|
|
|
|
int prev_seg_map_idx;
|
|
|
|
|
|
|
|
uint8_t *seg_map_array[NUM_PING_PONG_BUFFERS];
|
|
|
|
uint8_t *last_frame_seg_map;
|
|
|
|
uint8_t *current_frame_seg_map;
|
2012-01-27 19:29:07 +01:00
|
|
|
|
2014-01-24 21:26:57 +01:00
|
|
|
INTERP_FILTER interp_filter;
|
2011-06-10 13:10:21 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
loop_filter_info_n lf_info;
|
2011-06-10 13:10:21 +02:00
|
|
|
|
2013-04-26 23:39:58 +02:00
|
|
|
int refresh_frame_context; /* Two state 0 = NO, 1 = YES */
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-08-09 23:41:51 +02:00
|
|
|
struct loopfilter lf;
|
2013-08-14 20:20:33 +02:00
|
|
|
struct segmentation seg;
|
2013-08-09 23:41:51 +02:00
|
|
|
|
2015-01-27 21:26:28 +01:00
|
|
|
// TODO(hkuang): Remove this as it is the same as frame_parallel_decode
|
|
|
|
// in pbi.
|
|
|
|
int frame_parallel_decode; // frame-based threading.
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Context probabilities for reference frame prediction
|
2013-06-06 22:44:34 +02:00
|
|
|
MV_REFERENCE_FRAME comp_fixed_ref;
|
|
|
|
MV_REFERENCE_FRAME comp_var_ref[2];
|
2013-12-10 00:13:34 +01:00
|
|
|
REFERENCE_MODE reference_mode;
|
2012-02-02 15:33:34 +01:00
|
|
|
|
2014-10-22 23:37:38 +02:00
|
|
|
FRAME_CONTEXT *fc; /* this frame entropy */
|
|
|
|
FRAME_CONTEXT *frame_contexts; // FRAME_CONTEXTS
|
2013-01-16 00:57:11 +01:00
|
|
|
unsigned int frame_context_idx; /* Context to use/update */
|
2013-07-24 02:02:08 +02:00
|
|
|
FRAME_COUNTS counts;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
unsigned int current_video_frame;
|
2014-04-05 02:30:16 +02:00
|
|
|
BITSTREAM_PROFILE profile;
|
|
|
|
|
2014-08-26 21:35:15 +02:00
|
|
|
// VPX_BITS_8 in profile 0 or 1, VPX_BITS_10 or VPX_BITS_12 in profile 2 or 3.
|
|
|
|
vpx_bit_depth_t bit_depth;
|
2014-09-26 00:46:50 +02:00
|
|
|
vpx_bit_depth_t dequant_bit_depth; // bit_depth of current dequantizer
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-09-04 19:02:08 +02:00
|
|
|
#if CONFIG_VP9_POSTPROC
|
2012-07-14 00:21:29 +02:00
|
|
|
struct postproc_state postproc_state;
|
2011-08-01 22:42:14 +02:00
|
|
|
#endif
|
2012-06-26 01:23:58 +02:00
|
|
|
|
2013-01-15 15:43:35 +01:00
|
|
|
int error_resilient_mode;
|
2013-01-25 20:30:28 +01:00
|
|
|
int frame_parallel_decoding_mode;
|
[WIP] Add column-based tiling.
This patch adds column-based tiling. The idea is to make each tile
independently decodable (after reading the common frame header) and
also independendly encodable (minus within-frame cost adjustments in
the RD loop) to speed-up hardware & software en/decoders if they used
multi-threading. Column-based tiling has the added advantage (over
other tiling methods) that it minimizes realtime use-case latency,
since all threads can start encoding data as soon as the first SB-row
worth of data is available to the encoder.
There is some test code that does random tile ordering in the decoder,
to confirm that each tile is indeed independently decodable from other
tiles in the same frame. At tile edges, all contexts assume default
values (i.e. 0, 0 motion vector, no coefficients, DC intra4x4 mode),
and motion vector search and ordering do not cross tiles in the same
frame.
t log
Tile independence is not maintained between frames ATM, i.e. tile 0 of
frame 1 is free to use motion vectors that point into any tile of frame
0. We support 1 (i.e. no tiling), 2 or 4 column-tiles.
The loopfilter crosses tile boundaries. I discussed this briefly with Aki
and he says that's OK. An in-loop loopfilter would need to do some sync
between tile threads, but that shouldn't be a big issue.
Resuls: with tiling disabled, we go up slightly because of improved edge
use in the intra4x4 prediction. With 2 tiles, we lose about ~1% on derf,
~0.35% on HD and ~0.55% on STD/HD. With 4 tiles, we lose another ~1.5%
on derf ~0.77% on HD and ~0.85% on STD/HD. Most of this loss is
concentrated in the low-bitrate end of clips, and most of it is because
of the loss of edges at tile boundaries and the resulting loss of intra
predictors.
TODO:
- more tiles (perhaps allow row-based tiling also, and max. 8 tiles)?
- maybe optionally (for EC purposes), motion vectors themselves
should not cross tile edges, or we should emulate such borders as
if they were off-frame, to limit error propagation to within one
tile only. This doesn't have to be the default behaviour but could
be an optional bitstream flag.
Change-Id: I5951c3a0742a767b20bc9fb5af685d9892c2c96f
2013-02-01 18:35:28 +01:00
|
|
|
|
2013-07-16 23:47:15 +02:00
|
|
|
int log2_tile_cols, log2_tile_rows;
|
2014-12-15 21:00:09 +01:00
|
|
|
int byte_alignment;
|
2014-02-06 02:44:42 +01:00
|
|
|
|
|
|
|
// Private data associated with the frame buffer callbacks.
|
|
|
|
void *cb_priv;
|
|
|
|
vpx_get_frame_buffer_cb_fn_t get_fb_cb;
|
|
|
|
vpx_release_frame_buffer_cb_fn_t release_fb_cb;
|
|
|
|
|
|
|
|
// Handles memory for the codec.
|
|
|
|
InternalFrameBufferList int_frame_buffers;
|
2014-03-21 00:08:54 +01:00
|
|
|
|
2015-01-27 21:26:28 +01:00
|
|
|
// External BufferPool passed from outside.
|
|
|
|
BufferPool *buffer_pool;
|
|
|
|
|
2014-03-21 00:08:54 +01:00
|
|
|
PARTITION_CONTEXT *above_seg_context;
|
2014-03-25 02:32:46 +01:00
|
|
|
ENTROPY_CONTEXT *above_context;
|
2012-10-31 01:53:32 +01:00
|
|
|
} VP9_COMMON;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2015-01-27 21:26:28 +01:00
|
|
|
// TODO(hkuang): Don't need to lock the whole pool after implementing atomic
|
|
|
|
// frame reference count.
|
|
|
|
void lock_buffer_pool(BufferPool *const pool);
|
|
|
|
void unlock_buffer_pool(BufferPool *const pool);
|
|
|
|
|
2014-08-08 17:59:05 +02:00
|
|
|
static INLINE YV12_BUFFER_CONFIG *get_ref_frame(VP9_COMMON *cm, int index) {
|
|
|
|
if (index < 0 || index >= REF_FRAMES)
|
|
|
|
return NULL;
|
2014-08-10 03:54:28 +02:00
|
|
|
if (cm->ref_frame_map[index] < 0)
|
|
|
|
return NULL;
|
2014-08-14 21:42:11 +02:00
|
|
|
assert(cm->ref_frame_map[index] < FRAME_BUFFERS);
|
2015-01-27 21:26:28 +01:00
|
|
|
return &cm->buffer_pool->frame_bufs[cm->ref_frame_map[index]].buf;
|
2014-08-08 17:59:05 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 05:08:58 +01:00
|
|
|
static INLINE YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) {
|
2015-01-27 21:26:28 +01:00
|
|
|
return &cm->buffer_pool->frame_bufs[cm->new_fb_idx].buf;
|
2013-10-24 21:20:35 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 05:08:58 +01:00
|
|
|
static INLINE int get_free_fb(VP9_COMMON *cm) {
|
2015-01-27 21:26:28 +01:00
|
|
|
RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
|
2013-01-15 00:52:20 +01:00
|
|
|
int i;
|
2015-01-27 21:26:28 +01:00
|
|
|
|
|
|
|
lock_buffer_pool(cm->buffer_pool);
|
|
|
|
for (i = 0; i < FRAME_BUFFERS; ++i)
|
|
|
|
if (frame_bufs[i].ref_count == 0)
|
2014-01-23 23:59:00 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
assert(i < FRAME_BUFFERS);
|
2015-01-27 21:26:28 +01:00
|
|
|
frame_bufs[i].ref_count = 1;
|
|
|
|
unlock_buffer_pool(cm->buffer_pool);
|
2014-01-23 23:59:00 +01:00
|
|
|
return i;
|
2013-01-15 00:52:20 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 05:08:58 +01:00
|
|
|
static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) {
|
2013-12-05 00:11:00 +01:00
|
|
|
const int ref_index = *idx;
|
|
|
|
|
2014-01-29 21:48:01 +01:00
|
|
|
if (ref_index >= 0 && bufs[ref_index].ref_count > 0)
|
|
|
|
bufs[ref_index].ref_count--;
|
2013-01-15 00:52:20 +01:00
|
|
|
|
|
|
|
*idx = new_idx;
|
|
|
|
|
2014-01-29 21:48:01 +01:00
|
|
|
bufs[new_idx].ref_count++;
|
2013-01-15 00:52:20 +01:00
|
|
|
}
|
|
|
|
|
2014-02-10 05:08:58 +01:00
|
|
|
static INLINE int mi_cols_aligned_to_sb(int n_mis) {
|
2013-08-22 23:45:24 +02:00
|
|
|
return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2);
|
2013-04-23 19:12:18 +02:00
|
|
|
}
|
|
|
|
|
2014-04-01 19:57:59 +02:00
|
|
|
static INLINE void init_macroblockd(VP9_COMMON *cm, MACROBLOCKD *xd) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_MB_PLANE; ++i) {
|
2014-12-12 20:31:23 +01:00
|
|
|
xd->plane[i].dqcoeff = xd->dqcoeff;
|
2014-04-01 19:57:59 +02:00
|
|
|
xd->above_context[i] = cm->above_context +
|
|
|
|
i * sizeof(*cm->above_context) * 2 * mi_cols_aligned_to_sb(cm->mi_cols);
|
|
|
|
}
|
|
|
|
|
|
|
|
xd->above_seg_context = cm->above_seg_context;
|
2014-04-02 01:18:47 +02:00
|
|
|
xd->mi_stride = cm->mi_stride;
|
2014-12-17 21:00:05 +01:00
|
|
|
xd->error_info = &cm->error;
|
2014-04-01 19:57:59 +02:00
|
|
|
}
|
|
|
|
|
2014-06-10 00:22:17 +02:00
|
|
|
static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) {
|
|
|
|
return cm->frame_type == KEY_FRAME || cm->intra_only;
|
|
|
|
}
|
|
|
|
|
2014-03-03 21:19:51 +01:00
|
|
|
static INLINE const vp9_prob* get_partition_probs(const VP9_COMMON *cm,
|
|
|
|
int ctx) {
|
2014-06-10 00:22:17 +02:00
|
|
|
return frame_is_intra_only(cm) ? vp9_kf_partition_probs[ctx]
|
2014-10-22 23:37:38 +02:00
|
|
|
: cm->fc->partition_prob[ctx];
|
2013-11-02 02:23:06 +01:00
|
|
|
}
|
|
|
|
|
2014-04-01 19:57:59 +02:00
|
|
|
static INLINE void set_skip_context(MACROBLOCKD *xd, int mi_row, int mi_col) {
|
2013-08-12 20:24:24 +02:00
|
|
|
const int above_idx = mi_col * 2;
|
|
|
|
const int left_idx = (mi_row * 2) & 15;
|
|
|
|
int i;
|
2014-04-01 19:57:59 +02:00
|
|
|
for (i = 0; i < MAX_MB_PLANE; ++i) {
|
2013-08-12 20:24:24 +02:00
|
|
|
struct macroblockd_plane *const pd = &xd->plane[i];
|
2014-04-01 19:57:59 +02:00
|
|
|
pd->above_context = &xd->above_context[i][above_idx >> pd->subsampling_x];
|
|
|
|
pd->left_context = &xd->left_context[i][left_idx >> pd->subsampling_y];
|
2013-08-12 20:24:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 20:24:24 +02:00
|
|
|
static INLINE int calc_mi_size(int len) {
|
|
|
|
// len is in mi units.
|
|
|
|
return len + MI_BLOCK_SIZE;
|
|
|
|
}
|
|
|
|
|
2014-02-10 05:08:58 +01:00
|
|
|
static INLINE void set_mi_row_col(MACROBLOCKD *xd, const TileInfo *const tile,
|
|
|
|
int mi_row, int bh,
|
|
|
|
int mi_col, int bw,
|
|
|
|
int mi_rows, int mi_cols) {
|
2013-09-18 01:31:46 +02:00
|
|
|
xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
|
2013-10-25 17:18:04 +02:00
|
|
|
xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8;
|
2013-09-18 01:31:46 +02:00
|
|
|
xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
|
2013-10-25 17:18:04 +02:00
|
|
|
xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
|
2013-02-20 19:16:24 +01:00
|
|
|
|
|
|
|
// Are edges available for intra prediction?
|
2013-04-26 20:57:17 +02:00
|
|
|
xd->up_available = (mi_row != 0);
|
2013-10-25 17:18:04 +02:00
|
|
|
xd->left_available = (mi_col > tile->mi_col_start);
|
2014-12-05 23:39:21 +01:00
|
|
|
if (xd->up_available) {
|
2015-04-21 14:36:58 +02:00
|
|
|
xd->above_mi = xd->mi[-xd->mi_stride];
|
2014-12-09 23:32:48 +01:00
|
|
|
xd->above_mbmi = xd->above_mi ? &xd->above_mi->mbmi : NULL;
|
2014-12-05 23:39:21 +01:00
|
|
|
} else {
|
|
|
|
xd->above_mi = NULL;
|
|
|
|
xd->above_mbmi = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xd->left_available) {
|
2015-04-21 14:36:58 +02:00
|
|
|
xd->left_mi = xd->mi[-1];
|
2014-12-09 23:32:48 +01:00
|
|
|
xd->left_mbmi = xd->left_mi ? &xd->left_mi->mbmi : NULL;
|
2014-12-05 23:39:21 +01:00
|
|
|
} else {
|
|
|
|
xd->left_mi = NULL;
|
|
|
|
xd->left_mbmi = NULL;
|
|
|
|
}
|
2013-02-20 19:16:24 +01:00
|
|
|
}
|
|
|
|
|
2014-03-21 20:12:55 +01:00
|
|
|
static INLINE void update_partition_context(MACROBLOCKD *xd,
|
|
|
|
int mi_row, int mi_col,
|
|
|
|
BLOCK_SIZE subsize,
|
|
|
|
BLOCK_SIZE bsize) {
|
|
|
|
PARTITION_CONTEXT *const above_ctx = xd->above_seg_context + mi_col;
|
|
|
|
PARTITION_CONTEXT *const left_ctx = xd->left_seg_context + (mi_row & MI_MASK);
|
2013-10-21 21:02:19 +02:00
|
|
|
|
2013-11-19 20:17:30 +01:00
|
|
|
// num_4x4_blocks_wide_lookup[bsize] / 2
|
|
|
|
const int bs = num_8x8_blocks_wide_lookup[bsize];
|
2013-10-21 21:02:19 +02:00
|
|
|
|
|
|
|
// update the partition context at the end notes. set partition bits
|
|
|
|
// of block sizes larger than the current one to be one, and partition
|
|
|
|
// bits of smaller block sizes to be zero.
|
2013-11-19 20:17:30 +01:00
|
|
|
vpx_memset(above_ctx, partition_context_lookup[subsize].above, bs);
|
|
|
|
vpx_memset(left_ctx, partition_context_lookup[subsize].left, bs);
|
2013-10-21 21:02:19 +02:00
|
|
|
}
|
|
|
|
|
2014-03-21 20:12:55 +01:00
|
|
|
static INLINE int partition_plane_context(const MACROBLOCKD *xd,
|
|
|
|
int mi_row, int mi_col,
|
|
|
|
BLOCK_SIZE bsize) {
|
|
|
|
const PARTITION_CONTEXT *above_ctx = xd->above_seg_context + mi_col;
|
|
|
|
const PARTITION_CONTEXT *left_ctx = xd->left_seg_context + (mi_row & MI_MASK);
|
2013-10-21 21:02:19 +02:00
|
|
|
|
2014-10-07 21:45:25 +02:00
|
|
|
const int bsl = mi_width_log2_lookup[bsize];
|
2013-11-19 20:17:30 +01:00
|
|
|
const int bs = 1 << bsl;
|
2013-10-21 21:02:19 +02:00
|
|
|
int above = 0, left = 0, i;
|
|
|
|
|
2014-10-07 21:30:33 +02:00
|
|
|
assert(b_width_log2_lookup[bsize] == b_height_log2_lookup[bsize]);
|
2013-10-21 21:02:19 +02:00
|
|
|
assert(bsl >= 0);
|
|
|
|
|
2013-11-15 17:00:43 +01:00
|
|
|
for (i = 0; i < bs; i++) {
|
|
|
|
above |= above_ctx[i];
|
|
|
|
left |= left_ctx[i];
|
|
|
|
}
|
2013-11-19 20:17:30 +01:00
|
|
|
above = (above & bs) > 0;
|
|
|
|
left = (left & bs) > 0;
|
2013-10-21 21:02:19 +02:00
|
|
|
|
|
|
|
return (left * 2 + above) + bsl * PARTITION_PLOFFSET;
|
|
|
|
}
|
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_COMMON_VP9_ONYXC_INT_H_
|