diff options
author | Måns Rullgård <mans@mansr.com> | 2009-08-25 23:28:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-08-25 23:28:30 +0000 |
commit | dd36b88b46fed2b76e2cc9d9eb0d4c99fe976913 (patch) | |
tree | e7fd67f2255c566f1feff1f4048bd4326e95f6d9 /libavcodec/dsputil.c | |
parent | b979e4a289b204ac502f2792f2ee435094ff946d (diff) | |
download | ffmpeg-dd36b88b46fed2b76e2cc9d9eb0d4c99fe976913.tar.gz |
Remove explicit init to zero of static inv_zigzag_direct16
Originally committed as revision 19704 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 8efe9edf19..2d5a9a2121 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -86,7 +86,7 @@ const uint8_t ff_zigzag248_direct[64] = { }; /* not permutated inverse zigzag_direct + 1 for MMX quantizer */ -DECLARE_ALIGNED_8(uint16_t, inv_zigzag_direct16[64]) = {0, }; +DECLARE_ALIGNED_8(uint16_t, inv_zigzag_direct16[64]); const uint8_t ff_alternate_horizontal_scan[64] = { 0, 1, 2, 3, 8, 9, 16, 17, |