mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
snowenc: get rid of VLA (well it wasnt really variable anyway)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
13a215236b
commit
56d7f7d955
@ -1964,8 +1964,8 @@ AVCodec ff_snow_encoder = {
|
|||||||
#include "libavutil/mathematics.h"
|
#include "libavutil/mathematics.h"
|
||||||
|
|
||||||
int main(void){
|
int main(void){
|
||||||
int width=256;
|
#define width 256
|
||||||
int height=256;
|
#define height 256
|
||||||
int buffer[2][width*height];
|
int buffer[2][width*height];
|
||||||
SnowContext s;
|
SnowContext s;
|
||||||
int i;
|
int i;
|
||||||
|
Loading…
Reference in New Issue
Block a user