Code cleanup: mainly rd_pick_partition and methods called from there.
- Const correctness - Refactoring - Make variables local when possible etc - Remove -Wcast-qual to allow explicitly casting away const. Cherry-picked from aomedia/master: c27fcccc And then a number of more const correctness changes to make sure other experiments build OK. Change-Id: I77c18d99d21218fbdc9b186d7ed3792dc401a0a0
This commit is contained in:
@@ -22,7 +22,7 @@ struct AV1_COMP;
|
||||
struct macroblock;
|
||||
|
||||
// Select a segment for the current Block.
|
||||
void av1_caq_select_segment(struct AV1_COMP *cpi, struct macroblock *,
|
||||
void av1_caq_select_segment(const struct AV1_COMP *cpi, struct macroblock *,
|
||||
BLOCK_SIZE bs, int mi_row, int mi_col,
|
||||
int projected_rate);
|
||||
|
||||
|
Reference in New Issue
Block a user