1
0
Fork 0

avcodec/tests/snowenc: Fix mixed declaration and code

Reviewed-by: Sean McGovern <gseanmcg@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2024-03-15 15:23:26 +01:00
parent c00cd007e8
commit 5f7eb4240a
1 changed files with 1 additions and 1 deletions

View File

@ -35,9 +35,9 @@ int main(void){
SnowContext s;
int i;
AVLFG prng;
int ret = 0;
s.spatial_decomposition_count=6;
s.spatial_decomposition_type=1;
int ret = 0;
s.temp_dwt_buffer = av_calloc(width, sizeof(*s.temp_dwt_buffer));
s.temp_idwt_buffer = av_calloc(width, sizeof(*s.temp_idwt_buffer));