changeset 11360:dedeca07ba3b libavcodec

Maybe fix gcc 2.95
author conrad
date Thu, 04 Mar 2010 09:25:42 +0000
parents 471c370c6b05
children 3fa1224ae130
files vp3.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/vp3.c	Thu Mar 04 09:14:19 2010 +0000
+++ b/vp3.c	Thu Mar 04 09:25:42 2010 +0000
@@ -547,7 +547,7 @@
     memset(s->macroblock_coding, MODE_COPY, s->macroblock_count);
 
     for (plane = 0; plane < 3; plane++) {
-        int sb_start = (int[]){ 0, s->u_superblock_start, s->v_superblock_start }[plane];
+        int sb_start = (int[3]){ 0, s->u_superblock_start, s->v_superblock_start }[plane];
         int sb_end = sb_start + (plane ? s->c_superblock_count : s->y_superblock_count);
         int num_coded_frags = 0;