2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04: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 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __INC_VP8_INT_H
|
|
|
|
#define __INC_VP8_INT_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2011-09-15 16:34:12 +04:00
|
|
|
#include "vpx_config.h"
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/onyx.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "treewriter.h"
|
|
|
|
#include "tokenize.h"
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/onyxc_int.h"
|
2012-03-06 04:50:33 +04:00
|
|
|
#include "vp8/common/variance.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "encodemb.h"
|
|
|
|
#include "quantize.h"
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/entropy.h"
|
|
|
|
#include "vp8/common/threading.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "vpx_ports/mem.h"
|
2010-05-24 19:39:59 +04:00
|
|
|
#include "vpx/internal/vpx_codec_internal.h"
|
2012-05-24 03:08:37 +04:00
|
|
|
#include "vpx/vp8.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "mcomp.h"
|
2011-02-10 22:41:38 +03:00
|
|
|
#include "vp8/common/findnearmv.h"
|
2011-04-13 22:00:18 +04:00
|
|
|
#include "lookahead.h"
|
2012-03-06 13:48:18 +04:00
|
|
|
#if CONFIG_TEMPORAL_DENOISING
|
|
|
|
#include "vp8/encoder/denoising.h"
|
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
#define MIN_GF_INTERVAL 4
|
|
|
|
#define DEFAULT_GF_INTERVAL 7
|
|
|
|
|
|
|
|
#define KEY_FRAME_CONTEXT 5
|
|
|
|
|
|
|
|
#define MAX_LAG_BUFFERS (CONFIG_REALTIME_ONLY? 1 : 25)
|
|
|
|
|
|
|
|
#define AF_THRESH 25
|
|
|
|
#define AF_THRESH2 100
|
|
|
|
#define ARF_DECAY_THRESH 12
|
|
|
|
#define MAX_MODES 20
|
|
|
|
|
|
|
|
#define MIN_THRESHMULT 32
|
|
|
|
#define MAX_THRESHMULT 512
|
|
|
|
|
2011-06-08 19:00:59 +04:00
|
|
|
#define GF_ZEROMV_ZBIN_BOOST 12
|
|
|
|
#define LF_ZEROMV_ZBIN_BOOST 6
|
2010-11-08 18:28:54 +03:00
|
|
|
#define MV_ZBIN_BOOST 4
|
2010-05-18 19:58:33 +04:00
|
|
|
#define ZBIN_OQ_MAX 192
|
|
|
|
|
2011-02-22 11:29:23 +03:00
|
|
|
#if !(CONFIG_REALTIME_ONLY)
|
2010-05-18 19:58:33 +04:00
|
|
|
#define VP8_TEMPORAL_ALT_REF 1
|
2011-02-22 11:29:23 +03:00
|
|
|
#endif
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-10-25 23:14:16 +04:00
|
|
|
#define MAX(x,y) (((x)>(y))?(x):(y))
|
|
|
|
#define MIN(x,y) (((x)<(y))?(x):(y))
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int kf_indicated;
|
|
|
|
unsigned int frames_since_key;
|
|
|
|
unsigned int frames_since_golden;
|
|
|
|
int filter_level;
|
|
|
|
int frames_till_gf_update_due;
|
|
|
|
int recent_ref_frame_usage[MAX_REF_FRAMES];
|
|
|
|
|
|
|
|
MV_CONTEXT mvc[2];
|
|
|
|
int mvcosts[2][MVvals+1];
|
|
|
|
|
|
|
|
#ifdef MODE_STATS
|
|
|
|
int y_modes[5];
|
|
|
|
int uv_modes[4];
|
|
|
|
int b_modes[10];
|
|
|
|
int inter_y_modes[10];
|
|
|
|
int inter_uv_modes[4];
|
|
|
|
int inter_b_modes[10];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
vp8_prob ymode_prob[4], uv_mode_prob[3]; /* interframe intra mode probs */
|
|
|
|
vp8_prob kf_ymode_prob[4], kf_uv_mode_prob[3]; /* keyframe "" */
|
|
|
|
|
|
|
|
int ymode_count[5], uv_mode_count[4]; /* intra MB type cts this frame */
|
|
|
|
|
|
|
|
int count_mb_ref_frame_usage[MAX_REF_FRAMES];
|
|
|
|
|
|
|
|
int this_frame_percent_intra;
|
|
|
|
int last_frame_percent_intra;
|
|
|
|
|
|
|
|
|
|
|
|
} CODING_CONTEXT;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
double frame;
|
|
|
|
double intra_error;
|
|
|
|
double coded_error;
|
|
|
|
double ssim_weighted_pred_err;
|
|
|
|
double pcnt_inter;
|
|
|
|
double pcnt_motion;
|
|
|
|
double pcnt_second_ref;
|
2011-03-07 18:58:07 +03:00
|
|
|
double pcnt_neutral;
|
2010-05-18 19:58:33 +04:00
|
|
|
double MVr;
|
|
|
|
double mvr_abs;
|
|
|
|
double MVc;
|
|
|
|
double mvc_abs;
|
|
|
|
double MVrv;
|
|
|
|
double MVcv;
|
|
|
|
double mv_in_out_count;
|
2011-09-15 17:36:24 +04:00
|
|
|
double new_mv_count;
|
2010-05-18 19:58:33 +04:00
|
|
|
double duration;
|
|
|
|
double count;
|
|
|
|
}
|
|
|
|
FIRSTPASS_STATS;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int frames_so_far;
|
|
|
|
double frame_intra_error;
|
|
|
|
double frame_coded_error;
|
|
|
|
double frame_pcnt_inter;
|
|
|
|
double frame_pcnt_motion;
|
|
|
|
double frame_mvr;
|
|
|
|
double frame_mvr_abs;
|
|
|
|
double frame_mvc;
|
|
|
|
double frame_mvc_abs;
|
|
|
|
|
|
|
|
} ONEPASS_FRAMESTATS;
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
Speed selection support for disabled reference frames
There was an implicit reference frame test order (typically LAST,
GOLD, ARF) in the mode selection logic, but this doesn't provide the
expected results when some reference frames are disabled. For
instance, in real-time mode, the speed selection logic often disables
the ARF modes. So if the user disables the LAST and GOLD frames, the
encoder was always choosing INTRA, when in reality searching the ARF
in this case has the same speed penalty as searching LAST would have
had.
Instead, introduce the notion of a reference frame search order. This
patch preserves the former priorities, so if a frame is disabled, the
other frames bump up a slot to take its place. This patch lays the
groundwork for doing something smarter in the frame test order, for
example considering temporal distance or looking at the frames used by
nearby blocks.
Change-Id: I1199149f8662a408537c653d2c021c7f1d29a700
2011-11-19 00:47:16 +04:00
|
|
|
THR_ZERO1 = 0,
|
2010-05-18 19:58:33 +04:00
|
|
|
THR_DC = 1,
|
|
|
|
|
Speed selection support for disabled reference frames
There was an implicit reference frame test order (typically LAST,
GOLD, ARF) in the mode selection logic, but this doesn't provide the
expected results when some reference frames are disabled. For
instance, in real-time mode, the speed selection logic often disables
the ARF modes. So if the user disables the LAST and GOLD frames, the
encoder was always choosing INTRA, when in reality searching the ARF
in this case has the same speed penalty as searching LAST would have
had.
Instead, introduce the notion of a reference frame search order. This
patch preserves the former priorities, so if a frame is disabled, the
other frames bump up a slot to take its place. This patch lays the
groundwork for doing something smarter in the frame test order, for
example considering temporal distance or looking at the frames used by
nearby blocks.
Change-Id: I1199149f8662a408537c653d2c021c7f1d29a700
2011-11-19 00:47:16 +04:00
|
|
|
THR_NEAREST1 = 2,
|
|
|
|
THR_NEAR1 = 3,
|
2010-05-18 19:58:33 +04:00
|
|
|
|
Speed selection support for disabled reference frames
There was an implicit reference frame test order (typically LAST,
GOLD, ARF) in the mode selection logic, but this doesn't provide the
expected results when some reference frames are disabled. For
instance, in real-time mode, the speed selection logic often disables
the ARF modes. So if the user disables the LAST and GOLD frames, the
encoder was always choosing INTRA, when in reality searching the ARF
in this case has the same speed penalty as searching LAST would have
had.
Instead, introduce the notion of a reference frame search order. This
patch preserves the former priorities, so if a frame is disabled, the
other frames bump up a slot to take its place. This patch lays the
groundwork for doing something smarter in the frame test order, for
example considering temporal distance or looking at the frames used by
nearby blocks.
Change-Id: I1199149f8662a408537c653d2c021c7f1d29a700
2011-11-19 00:47:16 +04:00
|
|
|
THR_ZERO2 = 4,
|
|
|
|
THR_NEAREST2 = 5,
|
2010-05-18 19:58:33 +04:00
|
|
|
|
Speed selection support for disabled reference frames
There was an implicit reference frame test order (typically LAST,
GOLD, ARF) in the mode selection logic, but this doesn't provide the
expected results when some reference frames are disabled. For
instance, in real-time mode, the speed selection logic often disables
the ARF modes. So if the user disables the LAST and GOLD frames, the
encoder was always choosing INTRA, when in reality searching the ARF
in this case has the same speed penalty as searching LAST would have
had.
Instead, introduce the notion of a reference frame search order. This
patch preserves the former priorities, so if a frame is disabled, the
other frames bump up a slot to take its place. This patch lays the
groundwork for doing something smarter in the frame test order, for
example considering temporal distance or looking at the frames used by
nearby blocks.
Change-Id: I1199149f8662a408537c653d2c021c7f1d29a700
2011-11-19 00:47:16 +04:00
|
|
|
THR_ZERO3 = 6,
|
|
|
|
THR_NEAREST3 = 7,
|
2010-05-18 19:58:33 +04:00
|
|
|
|
Speed selection support for disabled reference frames
There was an implicit reference frame test order (typically LAST,
GOLD, ARF) in the mode selection logic, but this doesn't provide the
expected results when some reference frames are disabled. For
instance, in real-time mode, the speed selection logic often disables
the ARF modes. So if the user disables the LAST and GOLD frames, the
encoder was always choosing INTRA, when in reality searching the ARF
in this case has the same speed penalty as searching LAST would have
had.
Instead, introduce the notion of a reference frame search order. This
patch preserves the former priorities, so if a frame is disabled, the
other frames bump up a slot to take its place. This patch lays the
groundwork for doing something smarter in the frame test order, for
example considering temporal distance or looking at the frames used by
nearby blocks.
Change-Id: I1199149f8662a408537c653d2c021c7f1d29a700
2011-11-19 00:47:16 +04:00
|
|
|
THR_NEAR2 = 8,
|
|
|
|
THR_NEAR3 = 9,
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
THR_V_PRED = 10,
|
|
|
|
THR_H_PRED = 11,
|
|
|
|
THR_TM = 12,
|
|
|
|
|
Speed selection support for disabled reference frames
There was an implicit reference frame test order (typically LAST,
GOLD, ARF) in the mode selection logic, but this doesn't provide the
expected results when some reference frames are disabled. For
instance, in real-time mode, the speed selection logic often disables
the ARF modes. So if the user disables the LAST and GOLD frames, the
encoder was always choosing INTRA, when in reality searching the ARF
in this case has the same speed penalty as searching LAST would have
had.
Instead, introduce the notion of a reference frame search order. This
patch preserves the former priorities, so if a frame is disabled, the
other frames bump up a slot to take its place. This patch lays the
groundwork for doing something smarter in the frame test order, for
example considering temporal distance or looking at the frames used by
nearby blocks.
Change-Id: I1199149f8662a408537c653d2c021c7f1d29a700
2011-11-19 00:47:16 +04:00
|
|
|
THR_NEW1 = 13,
|
|
|
|
THR_NEW2 = 14,
|
|
|
|
THR_NEW3 = 15,
|
2010-05-18 19:58:33 +04:00
|
|
|
|
Speed selection support for disabled reference frames
There was an implicit reference frame test order (typically LAST,
GOLD, ARF) in the mode selection logic, but this doesn't provide the
expected results when some reference frames are disabled. For
instance, in real-time mode, the speed selection logic often disables
the ARF modes. So if the user disables the LAST and GOLD frames, the
encoder was always choosing INTRA, when in reality searching the ARF
in this case has the same speed penalty as searching LAST would have
had.
Instead, introduce the notion of a reference frame search order. This
patch preserves the former priorities, so if a frame is disabled, the
other frames bump up a slot to take its place. This patch lays the
groundwork for doing something smarter in the frame test order, for
example considering temporal distance or looking at the frames used by
nearby blocks.
Change-Id: I1199149f8662a408537c653d2c021c7f1d29a700
2011-11-19 00:47:16 +04:00
|
|
|
THR_SPLIT1 = 16,
|
|
|
|
THR_SPLIT2 = 17,
|
|
|
|
THR_SPLIT3 = 18,
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-05-02 21:08:10 +04:00
|
|
|
THR_B_PRED = 19
|
2010-05-18 19:58:33 +04:00
|
|
|
}
|
|
|
|
THR_MODES;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
DIAMOND = 0,
|
|
|
|
NSTEP = 1,
|
|
|
|
HEX = 2
|
|
|
|
} SEARCH_METHODS;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int RD;
|
|
|
|
SEARCH_METHODS search_method;
|
|
|
|
int improved_quant;
|
|
|
|
int improved_dct;
|
|
|
|
int auto_filter;
|
|
|
|
int recode_loop;
|
|
|
|
int iterative_sub_pixel;
|
|
|
|
int half_pixel_search;
|
|
|
|
int quarter_pixel_search;
|
|
|
|
int thresh_mult[MAX_MODES];
|
|
|
|
int max_step_search_steps;
|
|
|
|
int first_step;
|
|
|
|
int optimize_coefficients;
|
|
|
|
|
2010-12-28 22:51:46 +03:00
|
|
|
int use_fastquant_for_pick;
|
2011-01-11 01:21:55 +03:00
|
|
|
int no_skip_block4x4_search;
|
2011-02-11 17:43:37 +03:00
|
|
|
int improved_mv_pred;
|
2010-12-28 22:51:46 +03:00
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
} SPEED_FEATURES;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
MACROBLOCK mb;
|
|
|
|
int segment_counts[MAX_MB_SEGMENTS];
|
|
|
|
int totalrate;
|
|
|
|
} MB_ROW_COMP;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
TOKENEXTRA *start;
|
|
|
|
TOKENEXTRA *stop;
|
|
|
|
} TOKENLIST;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int ithread;
|
|
|
|
void *ptr1;
|
|
|
|
void *ptr2;
|
|
|
|
} ENCODETHREAD_DATA;
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int ithread;
|
|
|
|
void *ptr1;
|
|
|
|
} LPFTHREAD_DATA;
|
|
|
|
|
2010-10-26 23:34:16 +04:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
BLOCK_16X8,
|
|
|
|
BLOCK_8X16,
|
|
|
|
BLOCK_8X8,
|
|
|
|
BLOCK_4X4,
|
|
|
|
BLOCK_16X16,
|
|
|
|
BLOCK_MAX_SEGMENTS
|
|
|
|
};
|
|
|
|
|
2011-10-07 02:49:11 +04:00
|
|
|
typedef struct
|
|
|
|
{
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Layer configuration */
|
2011-10-07 02:49:11 +04:00
|
|
|
double frame_rate;
|
|
|
|
int target_bandwidth;
|
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Layer specific coding parameters */
|
2012-08-17 21:05:35 +04:00
|
|
|
int64_t starting_buffer_level;
|
|
|
|
int64_t optimal_buffer_level;
|
|
|
|
int64_t maximum_buffer_size;
|
|
|
|
int64_t starting_buffer_level_in_ms;
|
|
|
|
int64_t optimal_buffer_level_in_ms;
|
|
|
|
int64_t maximum_buffer_size_in_ms;
|
2011-10-07 02:49:11 +04:00
|
|
|
|
|
|
|
int avg_frame_size_for_layer;
|
|
|
|
|
2012-08-17 21:05:35 +04:00
|
|
|
int64_t buffer_level;
|
|
|
|
int64_t bits_off_target;
|
2011-10-07 02:49:11 +04:00
|
|
|
|
2011-12-22 02:21:29 +04:00
|
|
|
int64_t total_actual_bits;
|
2011-10-07 02:49:11 +04:00
|
|
|
int total_target_vs_actual;
|
|
|
|
|
|
|
|
int worst_quality;
|
|
|
|
int active_worst_quality;
|
|
|
|
int best_quality;
|
|
|
|
int active_best_quality;
|
|
|
|
|
|
|
|
int ni_av_qi;
|
|
|
|
int ni_tot_qi;
|
|
|
|
int ni_frames;
|
|
|
|
int avg_frame_qindex;
|
|
|
|
|
|
|
|
double rate_correction_factor;
|
|
|
|
double key_frame_rate_correction_factor;
|
|
|
|
double gf_rate_correction_factor;
|
|
|
|
|
|
|
|
int zbin_over_quant;
|
|
|
|
|
|
|
|
int inter_frame_target;
|
2011-12-22 02:21:29 +04:00
|
|
|
int64_t total_byte_count;
|
2011-10-07 02:49:11 +04:00
|
|
|
|
|
|
|
int filter_level;
|
|
|
|
|
|
|
|
int last_frame_percent_intra;
|
|
|
|
|
|
|
|
int count_mb_ref_frame_usage[MAX_REF_FRAMES];
|
|
|
|
|
|
|
|
} LAYER_CONTEXT;
|
|
|
|
|
2011-05-19 19:04:03 +04:00
|
|
|
typedef struct VP8_COMP
|
2010-05-18 19:58:33 +04:00
|
|
|
{
|
|
|
|
|
2010-10-22 04:04:30 +04:00
|
|
|
DECLARE_ALIGNED(16, short, Y1quant[QINDEX_RANGE][16]);
|
2011-04-13 21:45:58 +04:00
|
|
|
DECLARE_ALIGNED(16, unsigned char, Y1quant_shift[QINDEX_RANGE][16]);
|
2010-10-22 04:04:30 +04:00
|
|
|
DECLARE_ALIGNED(16, short, Y1zbin[QINDEX_RANGE][16]);
|
|
|
|
DECLARE_ALIGNED(16, short, Y1round[QINDEX_RANGE][16]);
|
|
|
|
|
|
|
|
DECLARE_ALIGNED(16, short, Y2quant[QINDEX_RANGE][16]);
|
2011-04-13 21:45:58 +04:00
|
|
|
DECLARE_ALIGNED(16, unsigned char, Y2quant_shift[QINDEX_RANGE][16]);
|
2010-10-22 04:04:30 +04:00
|
|
|
DECLARE_ALIGNED(16, short, Y2zbin[QINDEX_RANGE][16]);
|
|
|
|
DECLARE_ALIGNED(16, short, Y2round[QINDEX_RANGE][16]);
|
|
|
|
|
|
|
|
DECLARE_ALIGNED(16, short, UVquant[QINDEX_RANGE][16]);
|
2011-04-13 21:45:58 +04:00
|
|
|
DECLARE_ALIGNED(16, unsigned char, UVquant_shift[QINDEX_RANGE][16]);
|
2010-10-22 04:04:30 +04:00
|
|
|
DECLARE_ALIGNED(16, short, UVzbin[QINDEX_RANGE][16]);
|
|
|
|
DECLARE_ALIGNED(16, short, UVround[QINDEX_RANGE][16]);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
DECLARE_ALIGNED(16, short, zrun_zbin_boost_y1[QINDEX_RANGE][16]);
|
|
|
|
DECLARE_ALIGNED(16, short, zrun_zbin_boost_y2[QINDEX_RANGE][16]);
|
|
|
|
DECLARE_ALIGNED(16, short, zrun_zbin_boost_uv[QINDEX_RANGE][16]);
|
2010-12-28 22:51:46 +03:00
|
|
|
DECLARE_ALIGNED(16, short, Y1quant_fast[QINDEX_RANGE][16]);
|
|
|
|
DECLARE_ALIGNED(16, short, Y2quant_fast[QINDEX_RANGE][16]);
|
|
|
|
DECLARE_ALIGNED(16, short, UVquant_fast[QINDEX_RANGE][16]);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
MACROBLOCK mb;
|
|
|
|
VP8_COMMON common;
|
2012-05-22 01:30:56 +04:00
|
|
|
vp8_writer bc[9]; /* one boolcoder for each partition */
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
VP8_CONFIG oxcf;
|
|
|
|
|
2011-04-13 22:00:18 +04:00
|
|
|
struct lookahead_ctx *lookahead;
|
|
|
|
struct lookahead_entry *source;
|
|
|
|
struct lookahead_entry *alt_ref_source;
|
2012-03-14 18:03:39 +04:00
|
|
|
struct lookahead_entry *last_source;
|
2011-04-13 22:00:18 +04:00
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
YV12_BUFFER_CONFIG *Source;
|
|
|
|
YV12_BUFFER_CONFIG *un_scaled_source;
|
|
|
|
YV12_BUFFER_CONFIG scaled_source;
|
2012-03-14 18:03:39 +04:00
|
|
|
YV12_BUFFER_CONFIG *last_frame_unscaled_source;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* frame in src_buffers has been identified to be encoded as an alt ref */
|
|
|
|
int source_alt_ref_pending;
|
|
|
|
/* an alt ref frame has been encoded and is usable */
|
|
|
|
int source_alt_ref_active;
|
|
|
|
/* source of frame to encode is an exact copy of an alt ref frame */
|
|
|
|
int is_src_frame_alt_ref;
|
2010-11-17 02:16:24 +03:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* golden frame same as last frame ( short circuit gold searches) */
|
|
|
|
int gold_is_last;
|
|
|
|
/* Alt reference frame same as last ( short circuit altref search) */
|
|
|
|
int alt_is_last;
|
|
|
|
/* don't do both alt and gold search ( just do gold). */
|
|
|
|
int gold_is_alt;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-11-29 15:48:02 +04:00
|
|
|
YV12_BUFFER_CONFIG pick_lf_lvl_frame;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
TOKENEXTRA *tok;
|
|
|
|
unsigned int tok_count;
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int frames_since_key;
|
|
|
|
unsigned int key_frame_frequency;
|
2011-01-12 20:08:42 +03:00
|
|
|
unsigned int this_key_frame_forced;
|
|
|
|
unsigned int next_key_frame_forced;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Ambient reconstruction err target for force key frames */
|
2011-01-17 20:23:11 +03:00
|
|
|
int ambient_err;
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
unsigned int mode_check_freq[MAX_MODES];
|
|
|
|
unsigned int mode_test_hit_counts[MAX_MODES];
|
|
|
|
unsigned int mode_chosen_counts[MAX_MODES];
|
|
|
|
unsigned int mbs_tested_so_far;
|
|
|
|
|
|
|
|
int rd_thresh_mult[MAX_MODES];
|
|
|
|
int rd_baseline_thresh[MAX_MODES];
|
|
|
|
int rd_threshes[MAX_MODES];
|
|
|
|
|
|
|
|
int RDMULT;
|
|
|
|
int RDDIV ;
|
|
|
|
|
|
|
|
CODING_CONTEXT coding_context;
|
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Rate targetting variables */
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t prediction_error;
|
|
|
|
int64_t last_prediction_error;
|
|
|
|
int64_t intra_error;
|
|
|
|
int64_t last_intra_error;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int this_frame_target;
|
|
|
|
int projected_frame_size;
|
2012-05-22 01:30:56 +04:00
|
|
|
int last_q[2]; /* Separate values for Intra/Inter */
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
double rate_correction_factor;
|
|
|
|
double key_frame_rate_correction_factor;
|
|
|
|
double gf_rate_correction_factor;
|
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Count down till next GF */
|
|
|
|
int frames_till_gf_update_due;
|
|
|
|
|
|
|
|
/* GF interval chosen when we coded the last GF */
|
|
|
|
int current_gf_interval;
|
|
|
|
|
|
|
|
/* Total bits overspent becasue of GF boost (cumulative) */
|
|
|
|
int gf_overspend_bits;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Used in the few frames following a GF to recover the extra bits
|
|
|
|
* spent in that GF
|
|
|
|
*/
|
|
|
|
int non_gf_bitrate_adjustment;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Extra bits spent on key frames that need to be recovered */
|
|
|
|
int kf_overspend_bits;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Current number of bit s to try and recover on each inter frame. */
|
|
|
|
int kf_bitrate_adjustment;
|
2010-05-18 19:58:33 +04:00
|
|
|
int max_gf_interval;
|
|
|
|
int baseline_gf_interval;
|
2012-05-22 01:30:56 +04:00
|
|
|
int active_arnr_frames;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t key_frame_count;
|
2010-05-18 19:58:33 +04:00
|
|
|
int prior_key_frame_distance[KEY_FRAME_CONTEXT];
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Current section per frame bandwidth target */
|
|
|
|
int per_frame_bandwidth;
|
|
|
|
/* Average frame size target for clip */
|
|
|
|
int av_per_frame_bandwidth;
|
|
|
|
/* Minimum allocation that should be used for any frame */
|
|
|
|
int min_frame_bandwidth;
|
2010-05-18 19:58:33 +04:00
|
|
|
int inter_frame_target;
|
|
|
|
double output_frame_rate;
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t last_time_stamp_seen;
|
|
|
|
int64_t last_end_time_stamp_seen;
|
|
|
|
int64_t first_time_stamp_ever;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int ni_av_qi;
|
|
|
|
int ni_tot_qi;
|
|
|
|
int ni_frames;
|
|
|
|
int avg_frame_qindex;
|
|
|
|
|
|
|
|
int zbin_over_quant;
|
|
|
|
int zbin_mode_boost;
|
|
|
|
int zbin_mode_boost_enabled;
|
2011-11-02 00:20:00 +04:00
|
|
|
int last_zbin_over_quant;
|
|
|
|
int last_zbin_mode_boost;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t total_byte_count;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int buffered_mode;
|
|
|
|
|
2011-11-11 22:47:20 +04:00
|
|
|
double frame_rate;
|
2012-01-14 02:09:40 +04:00
|
|
|
double ref_frame_rate;
|
2011-10-07 23:42:23 +04:00
|
|
|
int64_t buffer_level;
|
2012-08-17 21:05:35 +04:00
|
|
|
int64_t bits_off_target;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int rolling_target_bits;
|
|
|
|
int rolling_actual_bits;
|
|
|
|
|
|
|
|
int long_rolling_target_bits;
|
|
|
|
int long_rolling_actual_bits;
|
|
|
|
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t total_actual_bits;
|
2012-05-22 01:30:56 +04:00
|
|
|
int total_target_vs_actual; /* debug stats */
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int worst_quality;
|
|
|
|
int active_worst_quality;
|
|
|
|
int best_quality;
|
|
|
|
int active_best_quality;
|
|
|
|
|
2011-01-07 21:29:37 +03:00
|
|
|
int cq_target_quality;
|
2011-01-07 19:33:59 +03:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
int drop_frames_allowed; /* Are we permitted to drop frames? */
|
|
|
|
int drop_frame; /* Drop this frame? */
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int ymode_count [VP8_YMODES]; /* intra MB type cts this frame */
|
2012-05-22 01:30:56 +04:00
|
|
|
int uv_mode_count[VP8_UV_MODES]; /* intra MB type cts this frame */
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
unsigned int MVcount [2] [MVvals]; /* (row,col) MV cts this frame */
|
|
|
|
|
2011-06-29 01:03:47 +04:00
|
|
|
unsigned int coef_counts [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MAX_ENTROPY_TOKENS]; /* for this frame */
|
2012-02-09 14:37:03 +04:00
|
|
|
|
2011-06-29 01:03:47 +04:00
|
|
|
vp8_prob frame_coef_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES];
|
2012-02-09 14:37:03 +04:00
|
|
|
char update_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES];
|
|
|
|
|
2011-06-29 01:03:47 +04:00
|
|
|
unsigned int frame_branch_ct [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES][2];
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int gfu_boost;
|
|
|
|
int kf_boost;
|
|
|
|
int last_boost;
|
|
|
|
|
|
|
|
int target_bandwidth;
|
|
|
|
struct vpx_codec_pkt_list *output_pkt_list;
|
2010-10-15 00:40:12 +04:00
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
#if 0
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Experimental code for lagged and one pass */
|
2010-05-18 19:58:33 +04:00
|
|
|
ONEPASS_FRAMESTATS one_pass_frame_stats[MAX_LAG_BUFFERS];
|
|
|
|
int one_pass_frame_index;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int decimation_factor;
|
|
|
|
int decimation_count;
|
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* for real time encoding */
|
|
|
|
int avg_encode_time; /* microsecond */
|
|
|
|
int avg_pick_mode_time; /* microsecond */
|
2010-05-18 19:58:33 +04:00
|
|
|
int Speed;
|
|
|
|
int compressor_speed;
|
|
|
|
|
|
|
|
int interquantizer;
|
|
|
|
int auto_gold;
|
|
|
|
int auto_adjust_gold_quantizer;
|
|
|
|
int auto_worst_q;
|
|
|
|
int cpu_used;
|
|
|
|
int pass;
|
|
|
|
|
|
|
|
|
|
|
|
int prob_intra_coded;
|
|
|
|
int prob_last_coded;
|
|
|
|
int prob_gf_coded;
|
|
|
|
int prob_skip_false;
|
|
|
|
int last_skip_false_probs[3];
|
|
|
|
int last_skip_probs_q[3];
|
|
|
|
int recent_ref_frame_usage[MAX_REF_FRAMES];
|
|
|
|
|
|
|
|
int count_mb_ref_frame_usage[MAX_REF_FRAMES];
|
|
|
|
int this_frame_percent_intra;
|
|
|
|
int last_frame_percent_intra;
|
|
|
|
|
|
|
|
int ref_frame_flags;
|
|
|
|
|
|
|
|
SPEED_FEATURES sf;
|
|
|
|
int error_bins[1024];
|
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Data used for real time conferencing mode to help determine if it
|
|
|
|
* would be good to update the gf
|
|
|
|
*/
|
2010-05-18 19:58:33 +04:00
|
|
|
int inter_zz_count;
|
|
|
|
int gf_bad_count;
|
|
|
|
int gf_update_recommended;
|
|
|
|
int skip_true_count;
|
|
|
|
|
|
|
|
unsigned char *segmentation_map;
|
2012-05-22 01:30:56 +04:00
|
|
|
signed char segment_feature_data[MB_LVL_MAX][MAX_MB_SEGMENTS];
|
|
|
|
int segment_encode_breakout[MAX_MB_SEGMENTS];
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
unsigned char *active_map;
|
|
|
|
unsigned int active_map_enabled;
|
2012-05-22 01:30:56 +04:00
|
|
|
|
|
|
|
/* Video conferencing cyclic refresh mode flags. This is a mode
|
|
|
|
* designed to clean up the background over time in live encoding
|
|
|
|
* scenarious. It uses segmentation.
|
|
|
|
*/
|
2010-05-18 19:58:33 +04:00
|
|
|
int cyclic_refresh_mode_enabled;
|
|
|
|
int cyclic_refresh_mode_max_mbs_perframe;
|
|
|
|
int cyclic_refresh_mode_index;
|
|
|
|
int cyclic_refresh_q;
|
|
|
|
signed char *cyclic_refresh_map;
|
|
|
|
|
2011-02-05 08:29:25 +03:00
|
|
|
#if CONFIG_MULTITHREAD
|
2012-05-22 01:30:56 +04:00
|
|
|
/* multithread data */
|
2011-01-26 11:29:46 +03:00
|
|
|
int * mt_current_mb_col;
|
|
|
|
int mt_sync_range;
|
2010-05-18 19:58:33 +04:00
|
|
|
int b_multi_threaded;
|
|
|
|
int encoding_thread_count;
|
2011-09-16 14:54:06 +04:00
|
|
|
int b_lpf_running;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
pthread_t *h_encoding_thread;
|
2011-02-25 14:42:05 +03:00
|
|
|
pthread_t h_filter_thread;
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
MB_ROW_COMP *mb_row_ei;
|
|
|
|
ENCODETHREAD_DATA *en_thread_data;
|
2011-02-25 14:42:05 +03:00
|
|
|
LPFTHREAD_DATA lpf_thread_data;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* events */
|
2011-01-26 11:29:46 +03:00
|
|
|
sem_t *h_event_start_encoding;
|
|
|
|
sem_t h_event_end_encoding;
|
2011-02-25 14:42:05 +03:00
|
|
|
sem_t h_event_start_lpf;
|
|
|
|
sem_t h_event_end_lpf;
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
TOKENLIST *tplist;
|
2011-06-13 18:42:27 +04:00
|
|
|
unsigned int partition_sz[MAX_PARTITIONS];
|
2012-02-09 14:37:03 +04:00
|
|
|
unsigned char *partition_d[MAX_PARTITIONS];
|
|
|
|
unsigned char *partition_d_end[MAX_PARTITIONS];
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
|
|
|
|
fractional_mv_step_fp *find_fractional_mv_step;
|
|
|
|
vp8_full_search_fn_t full_search_sad;
|
2011-05-06 20:51:31 +04:00
|
|
|
vp8_refining_search_fn_t refining_search_sad;
|
2010-05-18 19:58:33 +04:00
|
|
|
vp8_diamond_search_fn_t diamond_search_sad;
|
2010-10-26 23:34:16 +04:00
|
|
|
vp8_variance_fn_ptr_t fn_ptr[BLOCK_MAX_SEGMENTS];
|
2012-08-17 21:05:35 +04:00
|
|
|
uint64_t time_receive_data;
|
|
|
|
uint64_t time_compress_data;
|
|
|
|
uint64_t time_pick_lpf;
|
|
|
|
uint64_t time_encode_mb_row;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int base_skip_false_prob[128];
|
|
|
|
|
2011-12-10 04:56:18 +04:00
|
|
|
FRAME_CONTEXT lfc_n; /* last frame entropy */
|
|
|
|
FRAME_CONTEXT lfc_a; /* last alt ref entropy */
|
|
|
|
FRAME_CONTEXT lfc_g; /* last gold ref entropy */
|
|
|
|
|
|
|
|
|
2011-05-20 01:16:39 +04:00
|
|
|
struct twopass_rc
|
|
|
|
{
|
|
|
|
unsigned int section_intra_rating;
|
|
|
|
double section_max_qfactor;
|
|
|
|
unsigned int next_iiratio;
|
|
|
|
unsigned int this_iiratio;
|
Avoid heap allocation of firstpass stats
The total_stats, this_frame_stats, and total_left_stats structures
were previously create by a heap allocation, despite being of fixed
size. These structures were allocated and deallocated during
{de,}allocate_compressor_data, which is reinvoked whenever the frame
size changes. Unfortunately, this clobbers the total_stats and
total_left_stats data.
Historically, these were variable size at one time, due to the first
pass motion map, which necessitated their being created by a unique
heap allocation. However, this bug with the total_stats being
clobbered has probably been present since that initial implementation.
These structures are instead moved to be stored within the struct
twopass_rc directly, rather than being heap allocated separately.
Change-Id: I7f9e519e25c58b92969071f0e99fa80307e0682b
2011-12-16 23:26:53 +04:00
|
|
|
FIRSTPASS_STATS total_stats;
|
|
|
|
FIRSTPASS_STATS this_frame_stats;
|
2011-06-28 20:29:47 +04:00
|
|
|
FIRSTPASS_STATS *stats_in, *stats_in_end, *stats_in_start;
|
Avoid heap allocation of firstpass stats
The total_stats, this_frame_stats, and total_left_stats structures
were previously create by a heap allocation, despite being of fixed
size. These structures were allocated and deallocated during
{de,}allocate_compressor_data, which is reinvoked whenever the frame
size changes. Unfortunately, this clobbers the total_stats and
total_left_stats data.
Historically, these were variable size at one time, due to the first
pass motion map, which necessitated their being created by a unique
heap allocation. However, this bug with the total_stats being
clobbered has probably been present since that initial implementation.
These structures are instead moved to be stored within the struct
twopass_rc directly, rather than being heap allocated separately.
Change-Id: I7f9e519e25c58b92969071f0e99fa80307e0682b
2011-12-16 23:26:53 +04:00
|
|
|
FIRSTPASS_STATS total_left_stats;
|
2011-05-20 01:16:39 +04:00
|
|
|
int first_pass_done;
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t bits_left;
|
|
|
|
int64_t clip_bits_total;
|
2011-05-20 01:16:39 +04:00
|
|
|
double avg_iiratio;
|
|
|
|
double modified_error_total;
|
|
|
|
double modified_error_used;
|
|
|
|
double modified_error_left;
|
|
|
|
double kf_intra_err_min;
|
|
|
|
double gf_intra_err_min;
|
|
|
|
int frames_to_key;
|
|
|
|
int maxq_max_limit;
|
|
|
|
int maxq_min_limit;
|
|
|
|
int gf_decay_rate;
|
|
|
|
int static_scene_max_gf_interval;
|
|
|
|
int kf_bits;
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Remaining error from uncoded frames in a gf group. */
|
|
|
|
int gf_group_error_left;
|
|
|
|
/* Projected total bits available for a key frame group of frames */
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t kf_group_bits;
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Error score of frames still to be coded in kf group */
|
2011-07-26 05:44:59 +04:00
|
|
|
int64_t kf_group_error_left;
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Projected Bits available for a group including 1 GF or ARF */
|
|
|
|
int gf_group_bits;
|
|
|
|
/* Bits for the golden frame or ARF */
|
|
|
|
int gf_bits;
|
2011-08-17 17:14:23 +04:00
|
|
|
int alt_extra_bits;
|
2011-05-20 01:16:39 +04:00
|
|
|
double est_max_qcorrection_factor;
|
|
|
|
} twopass;
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
#if VP8_TEMPORAL_ALT_REF
|
2011-04-13 22:00:18 +04:00
|
|
|
YV12_BUFFER_CONFIG alt_ref_buffer;
|
2010-09-28 18:23:41 +04:00
|
|
|
YV12_BUFFER_CONFIG *frames[MAX_LAG_BUFFERS];
|
|
|
|
int fixed_divide[512];
|
2010-05-18 19:58:33 +04:00
|
|
|
#endif
|
|
|
|
|
2011-04-29 20:37:59 +04:00
|
|
|
#if CONFIG_INTERNAL_STATS
|
2010-05-18 19:58:33 +04:00
|
|
|
int count;
|
|
|
|
double total_y;
|
|
|
|
double total_u;
|
|
|
|
double total_v;
|
|
|
|
double total ;
|
|
|
|
double total_sq_error;
|
|
|
|
double totalp_y;
|
|
|
|
double totalp_u;
|
|
|
|
double totalp_v;
|
|
|
|
double totalp;
|
|
|
|
double total_sq_error2;
|
|
|
|
int bytes;
|
|
|
|
double summed_quality;
|
|
|
|
double summed_weights;
|
|
|
|
unsigned int tot_recode_hits;
|
|
|
|
|
|
|
|
|
|
|
|
double total_ssimg_y;
|
|
|
|
double total_ssimg_u;
|
|
|
|
double total_ssimg_v;
|
|
|
|
double total_ssimg_all;
|
|
|
|
|
|
|
|
int b_calculate_ssimg;
|
|
|
|
#endif
|
|
|
|
int b_calculate_psnr;
|
2010-08-11 19:02:31 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Per MB activity measurement */
|
2011-05-12 20:01:55 +04:00
|
|
|
unsigned int activity_avg;
|
|
|
|
unsigned int * mb_activity_map;
|
|
|
|
int * mb_norm_activity_map;
|
2010-08-11 19:02:31 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Record of which MBs still refer to last golden frame either
|
|
|
|
* directly or through 0,0
|
|
|
|
*/
|
2011-05-12 20:01:55 +04:00
|
|
|
unsigned char *gf_active_flags;
|
2010-08-11 19:02:31 +04:00
|
|
|
int gf_active_count;
|
|
|
|
|
2011-06-13 18:42:27 +04:00
|
|
|
int output_partition;
|
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Store last frame's MV info for next frame MV prediction */
|
2010-12-03 19:26:21 +03:00
|
|
|
int_mv *lfmv;
|
|
|
|
int *lf_ref_frame_sign_bias;
|
|
|
|
int *lf_ref_frame;
|
2010-08-11 19:02:31 +04:00
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* force next frame to intra when kf_auto says so */
|
|
|
|
int force_next_frame_intra;
|
2011-08-26 00:54:45 +04:00
|
|
|
|
2011-07-07 18:38:23 +04:00
|
|
|
int droppable;
|
2011-10-07 02:49:11 +04:00
|
|
|
|
2012-03-06 13:48:18 +04:00
|
|
|
#if CONFIG_TEMPORAL_DENOISING
|
|
|
|
VP8_DENOISER denoiser;
|
|
|
|
#endif
|
|
|
|
|
2012-05-22 01:30:56 +04:00
|
|
|
/* Coding layer state variables */
|
2011-10-07 02:49:11 +04:00
|
|
|
unsigned int current_layer;
|
2012-05-03 03:21:52 +04:00
|
|
|
LAYER_CONTEXT layer_context[VPX_TS_MAX_LAYERS];
|
|
|
|
|
|
|
|
int64_t frames_in_layer[VPX_TS_MAX_LAYERS];
|
|
|
|
int64_t bytes_in_layer[VPX_TS_MAX_LAYERS];
|
|
|
|
double sum_psnr[VPX_TS_MAX_LAYERS];
|
|
|
|
double sum_psnr_p[VPX_TS_MAX_LAYERS];
|
|
|
|
double total_error2[VPX_TS_MAX_LAYERS];
|
|
|
|
double total_error2_p[VPX_TS_MAX_LAYERS];
|
|
|
|
double sum_ssim[VPX_TS_MAX_LAYERS];
|
|
|
|
double sum_weights[VPX_TS_MAX_LAYERS];
|
|
|
|
|
|
|
|
double total_ssimg_y_in_layer[VPX_TS_MAX_LAYERS];
|
|
|
|
double total_ssimg_u_in_layer[VPX_TS_MAX_LAYERS];
|
|
|
|
double total_ssimg_v_in_layer[VPX_TS_MAX_LAYERS];
|
|
|
|
double total_ssimg_all_in_layer[VPX_TS_MAX_LAYERS];
|
2011-10-07 02:49:11 +04:00
|
|
|
|
2011-10-25 23:14:16 +04:00
|
|
|
#if CONFIG_MULTI_RES_ENCODING
|
|
|
|
/* Number of MBs per row at lower-resolution level */
|
|
|
|
int mr_low_res_mb_cols;
|
2012-06-08 19:17:50 +04:00
|
|
|
/* Indicate if lower-res mv info is available */
|
|
|
|
unsigned char mr_low_res_mv_avail;
|
|
|
|
/* The frame number of each reference frames */
|
|
|
|
unsigned int current_ref_frames[MAX_REF_FRAMES];
|
2011-10-25 23:14:16 +04:00
|
|
|
#endif
|
|
|
|
|
2012-04-17 11:40:56 +04:00
|
|
|
struct rd_costs_struct
|
|
|
|
{
|
|
|
|
int mvcosts[2][MVvals+1];
|
|
|
|
int mvsadcosts[2][MVfpvals+1];
|
|
|
|
int mbmode_cost[2][MB_MODE_COUNT];
|
|
|
|
int intra_uv_mode_cost[2][MB_MODE_COUNT];
|
|
|
|
int bmode_costs[10][10][10];
|
|
|
|
int inter_bmode_costs[B_MODE_COUNT];
|
|
|
|
int token_costs[BLOCK_TYPES][COEF_BANDS]
|
|
|
|
[PREV_COEF_CONTEXTS][MAX_ENTROPY_TOKENS];
|
|
|
|
} rd_costs;
|
2010-05-18 19:58:33 +04:00
|
|
|
} VP8_COMP;
|
|
|
|
|
|
|
|
void control_data_rate(VP8_COMP *cpi);
|
|
|
|
|
2011-10-12 19:18:50 +04:00
|
|
|
void vp8_pack_bitstream(VP8_COMP *cpi, unsigned char *dest, unsigned char *dest_end, unsigned long *size);
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
int rd_cost_intra_mb(MACROBLOCKD *x);
|
|
|
|
|
|
|
|
void vp8_tokenize_mb(VP8_COMP *, MACROBLOCKD *, TOKENEXTRA **);
|
|
|
|
|
|
|
|
void vp8_set_speed_features(VP8_COMP *cpi);
|
|
|
|
|
|
|
|
#if CONFIG_DEBUG
|
|
|
|
#define CHECK_MEM_ERROR(lval,expr) do {\
|
|
|
|
lval = (expr); \
|
|
|
|
if(!lval) \
|
|
|
|
vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,\
|
|
|
|
"Failed to allocate "#lval" at %s:%d", \
|
|
|
|
__FILE__,__LINE__);\
|
|
|
|
} while(0)
|
|
|
|
#else
|
|
|
|
#define CHECK_MEM_ERROR(lval,expr) do {\
|
|
|
|
lval = (expr); \
|
|
|
|
if(!lval) \
|
|
|
|
vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,\
|
|
|
|
"Failed to allocate "#lval);\
|
|
|
|
} while(0)
|
|
|
|
#endif
|
|
|
|
#endif
|