Commit 5f7eb424 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avcodec/tests/snowenc: Fix mixed declaration and code

Reviewed-by: 's avatarSean McGovern <gseanmcg@gmail.com>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent c00cd007
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment