Compare commits
1 Commits
stable-vp9
...
sandbox/sl
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4a7b456a7b |
@@ -2158,7 +2158,6 @@ VP8_PTR vp8_create_compressor(VP8_CONFIG *oxcf)
|
|||||||
|
|
||||||
cpi->common.error.setjmp = 1;
|
cpi->common.error.setjmp = 1;
|
||||||
|
|
||||||
CHECK_MEM_ERROR(cpi->rdtok, vpx_calloc(256 * 3 / 2, sizeof(TOKENEXTRA)));
|
|
||||||
CHECK_MEM_ERROR(cpi->mb.ss, vpx_calloc(sizeof(search_site), (MAX_MVSEARCH_STEPS * 8) + 1));
|
CHECK_MEM_ERROR(cpi->mb.ss, vpx_calloc(sizeof(search_site), (MAX_MVSEARCH_STEPS * 8) + 1));
|
||||||
|
|
||||||
vp8_create_common(&cpi->common);
|
vp8_create_common(&cpi->common);
|
||||||
@@ -2666,7 +2665,6 @@ void vp8_remove_compressor(VP8_PTR *ptr)
|
|||||||
vp8_dealloc_compressor_data(cpi);
|
vp8_dealloc_compressor_data(cpi);
|
||||||
vpx_free(cpi->mb.ss);
|
vpx_free(cpi->mb.ss);
|
||||||
vpx_free(cpi->tok);
|
vpx_free(cpi->tok);
|
||||||
vpx_free(cpi->rdtok);
|
|
||||||
vpx_free(cpi->cyclic_refresh_map);
|
vpx_free(cpi->cyclic_refresh_map);
|
||||||
|
|
||||||
vp8_remove_common(&cpi->common);
|
vp8_remove_common(&cpi->common);
|
||||||
|
@@ -308,8 +308,6 @@ typedef struct
|
|||||||
|
|
||||||
YV12_BUFFER_CONFIG last_frame_uf;
|
YV12_BUFFER_CONFIG last_frame_uf;
|
||||||
|
|
||||||
char *Dest;
|
|
||||||
|
|
||||||
TOKENEXTRA *tok;
|
TOKENEXTRA *tok;
|
||||||
unsigned int tok_count;
|
unsigned int tok_count;
|
||||||
|
|
||||||
@@ -338,11 +336,6 @@ typedef struct
|
|||||||
int RDMULT;
|
int RDMULT;
|
||||||
int RDDIV ;
|
int RDDIV ;
|
||||||
|
|
||||||
TOKENEXTRA *rdtok;
|
|
||||||
vp8_writer rdbc;
|
|
||||||
int intra_mode_costs[10];
|
|
||||||
|
|
||||||
|
|
||||||
CODING_CONTEXT coding_context;
|
CODING_CONTEXT coding_context;
|
||||||
|
|
||||||
// Rate targetting variables
|
// Rate targetting variables
|
||||||
@@ -551,8 +544,6 @@ typedef struct
|
|||||||
|
|
||||||
int ref_frame_flags;
|
int ref_frame_flags;
|
||||||
|
|
||||||
int exp[512];
|
|
||||||
|
|
||||||
SPEED_FEATURES sf;
|
SPEED_FEATURES sf;
|
||||||
int error_bins[1024];
|
int error_bins[1024];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user