diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2003-10-16 04:50:54 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2003-10-16 04:50:54 +0000 |
commit | 00c28046e48b2892da9abf3764458308a170aaac (patch) | |
tree | 4a81fe1552d24371487c819dd15954fffd67b394 /libavcodec/dv.c | |
parent | 6571e41dcdee4655237bca0a3277df8976167aee (diff) | |
download | ffmpeg-00c28046e48b2892da9abf3764458308a170aaac.tar.gz |
* fix for a trivial 100l declaration typo
Originally committed as revision 2393 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 10fc01466d..b5ee875f64 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -485,8 +485,9 @@ static inline void dv_decode_video_segment(DVVideoDecodeContext *s, } } else { if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) { - uint64_t aligned_pixels[64/8], *c_ptr, *c_ptr1, *ptr; + uint64_t aligned_pixels[64/8]; uint8_t *pixels= (uint8_t*)aligned_pixels; + uint8_t *c_ptr, *c_ptr1, *ptr; int y, linesize; /* NOTE: at end of line, the macroblock is handled as 420 */ idct_put(pixels, 8, block); |