diff options
author | Janne Grunau <janne-libav@jannau.net> | 2015-07-20 23:17:57 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2015-07-22 12:06:32 +0200 |
commit | e605bf3b590d295f215fcc9fd58eb11be55b68cb (patch) | |
tree | 0f3b120809f4f03a7df1dde7e03181c84f25e6a2 | |
parent | 3ae0e721c7b6e0483801b9039b3d140e3b68b7f5 (diff) | |
download | ffmpeg-e605bf3b590d295f215fcc9fd58eb11be55b68cb.tar.gz |
checkasm: remove empty array initializer list in h264pred test
Fixes MSVC compilation.
-rw-r--r-- | tests/checkasm/h264pred.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/checkasm/h264pred.c b/tests/checkasm/h264pred.c index a5eb033f7d..40e949ab1d 100644 --- a/tests/checkasm/h264pred.c +++ b/tests/checkasm/h264pred.c @@ -87,8 +87,7 @@ static const char * const pred8x8_modes[4][11] = { [LEFT_DC_PRED8x8] = "left_dc_rv40", [TOP_DC_PRED8x8 ] = "top_dc_rv40", }, - { /* SVQ3 */ - }, + /* nothing for SVQ3 */ }; static const char * const pred16x16_modes[4][9] = { |