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
commit
56d7f7d955
1 changed files with 2 additions and 2 deletions
  1. +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;


Loading…
Cancel
Save