diff options
author | David Conrad <lessen42@gmail.com> | 2010-03-04 09:25:42 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-03-04 09:25:42 +0000 |
commit | 0448ef7788622f57f00d089c9138e2f594c9d246 (patch) | |
tree | b9a34835db6160adfc0e03f2f8d9d0d7e14f9658 /libavcodec/vp3.c | |
parent | 11ae0c52b93652328d356d9316789b830e785175 (diff) | |
download | ffmpeg-0448ef7788622f57f00d089c9138e2f594c9d246.tar.gz |
Maybe fix gcc 2.95
Originally committed as revision 22203 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r-- | libavcodec/vp3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index e2ee24a54d..970bfee099 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -547,7 +547,7 @@ static int unpack_superblocks(Vp3DecodeContext *s, GetBitContext *gb) 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; |