mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
c00cd007e8
commit
5f7eb4240a
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue