# HG changeset patch # User mru # Date 1277567605 0 # Node ID 3dbbf18d4905ca4a5bfd6d0e86200998948408c6 # Parent f092b80c0da24b35120f7a5f65597de58270b843 ffv1: remove VLAs diff -r f092b80c0da2 -r 3dbbf18d4905 ffv1.c --- a/ffv1.c Sat Jun 26 14:34:21 2010 +0000 +++ b/ffv1.c Sat Jun 26 15:53:25 2010 +0000 @@ -237,6 +237,7 @@ uint8_t state_transition[256]; int run_index; int colorspace; + int_fast16_t *sample_buffer; DSPContext dsp; }FFV1Context; @@ -509,14 +510,14 @@ static void encode_plane(FFV1Context *s, uint8_t *src, int w, int h, int stride, int plane_index){ int x,y,i; const int ring_size= s->avctx->context_model ? 3 : 2; - int_fast16_t sample_buffer[ring_size][w+6], *sample[ring_size]; + int_fast16_t *sample[3]; s->run_index=0; - memset(sample_buffer, 0, sizeof(sample_buffer)); + memset(s->sample_buffer, 0, ring_size*(w+6)*sizeof(*s->sample_buffer)); for(y=0; ysample_buffer + (w+6)*((h+i-y)%ring_size) + 3; sample[0][-1]= sample[1][0 ]; sample[1][ w]= sample[1][w-1]; @@ -539,15 +540,15 @@ static void encode_rgb_frame(FFV1Context *s, uint32_t *src, int w, int h, int stride){ int x, y, p, i; const int ring_size= s->avctx->context_model ? 3 : 2; - int_fast16_t sample_buffer[3][ring_size][w+6], *sample[3][ring_size]; + int_fast16_t *sample[3][3]; s->run_index=0; - memset(sample_buffer, 0, sizeof(sample_buffer)); + memset(s->sample_buffer, 0, ring_size*3*(w+6)*sizeof(*s->sample_buffer)); for(y=0; ysample_buffer + p*ring_size*(w+6) + ((h+i-y)%ring_size)*(w+6) + 3; for(x=0; xwidth && s->height); + s->sample_buffer = av_malloc(6 * (s->width+6) * sizeof(*s->sample_buffer)); + if (!s->sample_buffer) + return AVERROR(ENOMEM); + return 0; } @@ -823,6 +828,8 @@ av_freep(&p->vlc_state); } + av_freep(&s->sample_buffer); + return 0; } @@ -885,14 +892,13 @@ static void decode_plane(FFV1Context *s, uint8_t *src, int w, int h, int stride, int plane_index){ int x, y; - int_fast16_t sample_buffer[2][w+6]; int_fast16_t *sample[2]; - sample[0]=sample_buffer[0]+3; - sample[1]=sample_buffer[1]+3; + sample[0]=s->sample_buffer +3; + sample[1]=s->sample_buffer+w+6+3; s->run_index=0; - memset(sample_buffer, 0, sizeof(sample_buffer)); + memset(s->sample_buffer, 0, 2*(w+6)*sizeof(*s->sample_buffer)); for(y=0; ysample_buffer + x*2 *(w+6) + 3; + sample[x][1] = s->sample_buffer + (x*2+1)*(w+6) + 3; } s->run_index=0; - memset(sample_buffer, 0, sizeof(sample_buffer)); + memset(s->sample_buffer, 0, 6*(w+6)*sizeof(*s->sample_buffer)); for(y=0; y