Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
1231638d
Commit
1231638d
authored
11 years ago
by
Marco Paniconi
Committed by
Gerrit Code Review
11 years ago
Browse files
Options
Download
Plain Diff
Merge "Some code cleanup for cyclic refresh."
parents
98ed74d9
21be5ca0
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
frame_parallel
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
playground
sandbox/Jingning/experimental
sandbox/Jingning/transcode
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang/frame_parallel
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
vp9/encoder/vp9_craq.h
+30
-11
vp9/encoder/vp9_craq.h
vp9/encoder/vp9_onyx_int.h
+1
-26
vp9/encoder/vp9_onyx_int.h
with
31 additions
and
37 deletions
vp9/encoder/vp9_craq.h
+
30
−
11
View file @
1231638d
...
@@ -12,26 +12,45 @@
...
@@ -12,26 +12,45 @@
#ifndef VP9_ENCODER_VP9_CRAQ_H_
#ifndef VP9_ENCODER_VP9_CRAQ_H_
#define VP9_ENCODER_VP9_CRAQ_H_
#define VP9_ENCODER_VP9_CRAQ_H_
#include
"vp9/
encoder/vp9_onyx_int
.h"
#include
"vp9/
common/vp9_blockd
.h"
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
#endif
#endif
// Check if we should turn off cyclic refresh based on bitrate condition.
typedef
struct
{
static
int
apply_cyclic_refresh_bitrate
(
VP9_COMP
*
const
cpi
);
// Target percentage of blocks per frame that are cyclicly refreshed.
int
max_mbs_perframe
;
// Maximum q-delta as percentage of base q.
int
max_qdelta_perc
;
// Block size below which we don't apply cyclic refresh.
BLOCK_SIZE
min_block_size
;
// Macroblock starting index (unit of 8x8) for cycling through the frame.
int
mb_index
;
// Controls how long a block will need to wait to be refreshed again.
int
time_for_refresh
;
// Actual number of blocks that were applied delta-q (segment 1).
int
num_seg_blocks
;
// Actual encoding bits for segment 1.
int
actual_seg_bits
;
// RD mult. parameters for segment 1.
int
rdmult
;
// Cyclic refresh map.
signed
char
*
map
;
// Projected rate and distortion for the current superblock.
int64_t
projected_rate_sb
;
int64_t
projected_dist_sb
;
// Thresholds applied to projected rate/distortion of the superblock.
int64_t
thresh_rate_sb
;
int64_t
thresh_dist_sb
;
}
CYCLIC_REFRESH
;
// Check if this coding block, of size bsize, should be considered for refresh
struct
VP9_COMP
;
// (lower-qp coding).
static
int
candidate_refresh_aq
(
VP9_COMP
*
const
cpi
,
MODE_INFO
*
const
mi
,
int
bsize
,
int
use_rd
);
// Prior to coding a given prediction block, of size bsize at (mi_row, mi_col),
// Prior to coding a given prediction block, of size bsize at (mi_row, mi_col),
// check if we should reset the segment_id, and update the cyclic_refresh map
// check if we should reset the segment_id, and update the cyclic_refresh map
// and segmentation map.
// and segmentation map.
void
vp9_update_segment_aq
(
VP9_COMP
*
const
cpi
,
void
vp9_update_segment_aq
(
struct
VP9_COMP
*
const
cpi
,
MODE_INFO
*
const
mi
,
MODE_INFO
*
const
mi
,
int
mi_row
,
int
mi_row
,
int
mi_col
,
int
mi_col
,
...
@@ -39,7 +58,7 @@ void vp9_update_segment_aq(VP9_COMP *const cpi,
...
@@ -39,7 +58,7 @@ void vp9_update_segment_aq(VP9_COMP *const cpi,
int
use_rd
);
int
use_rd
);
// Setup cyclic background refresh: set delta q and segmentation map.
// Setup cyclic background refresh: set delta q and segmentation map.
void
vp9_setup_cyclic_refresh_aq
(
VP9_COMP
*
const
cpi
);
void
vp9_setup_cyclic_refresh_aq
(
struct
VP9_COMP
*
const
cpi
);
#ifdef __cplusplus
#ifdef __cplusplus
}
// extern "C"
}
// extern "C"
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_onyx_int.h
+
1
−
26
View file @
1231638d
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include
"vp9/common/vp9_entropymode.h"
#include
"vp9/common/vp9_entropymode.h"
#include
"vp9/common/vp9_onyxc_int.h"
#include
"vp9/common/vp9_onyxc_int.h"
#include
"vp9/encoder/vp9_craq.h"
#include
"vp9/encoder/vp9_encodemb.h"
#include
"vp9/encoder/vp9_encodemb.h"
#include
"vp9/encoder/vp9_firstpass.h"
#include
"vp9/encoder/vp9_firstpass.h"
#include
"vp9/encoder/vp9_lookahead.h"
#include
"vp9/encoder/vp9_lookahead.h"
...
@@ -430,32 +431,6 @@ typedef enum {
...
@@ -430,32 +431,6 @@ typedef enum {
USAGE_CONSTANT_QUALITY
=
3
,
USAGE_CONSTANT_QUALITY
=
3
,
}
END_USAGE
;
}
END_USAGE
;
typedef
struct
{
// Target percentage of blocks per frame that are cyclicly refreshed.
int
max_mbs_perframe
;
// Maximum q-delta as percentage of base q.
int
max_qdelta_perc
;
// Block size below which we don't apply cyclic refresh.
BLOCK_SIZE
min_block_size
;
// Macroblock starting index (unit of 8x8) for cycling through the frame.
int
mb_index
;
// Controls how long a block will need to wait to be refreshed again.
int
time_for_refresh
;
// Actual number of blocks that were applied delta-q (segment 1).
int
num_seg_blocks
;
// Actual encoding bits for segment 1.
int
actual_seg_bits
;
// RD mult. parameters for segment 1.
int
rdmult
;
// Cyclic refresh map.
signed
char
*
map
;
// Projected rate and distortion for the current superblock.
int64_t
projected_rate_sb
;
int64_t
projected_dist_sb
;
// Thresholds applied to projected rate/distortion of the superblock.
int64_t
thresh_rate_sb
;
int64_t
thresh_dist_sb
;
}
CYCLIC_REFRESH
;
typedef
enum
{
typedef
enum
{
// Good Quality Fast Encoding. The encoder balances quality with the
// Good Quality Fast Encoding. The encoder balances quality with the
// amount of time it takes to encode the output. (speed setting
// amount of time it takes to encode the output. (speed setting
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets