This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
snowenc: get rid of VLA (well it wasnt really variable anyway)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer
12 years ago
parent
13a215236b
commit
56d7f7d955
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
libavcodec/snowenc.c
+ 2
- 2
libavcodec/snowenc.c
View File
@@ -1964,8 +1964,8 @@ AVCodec ff_snow_encoder = {
#include "libavutil/mathematics.h"
int main(void){
int width=256;
int height=256;
#define width 256
#define height 256
int buffer[2][width*height];
SnowContext s;
int i;
Write
Preview
Loading…
Cancel
Save