diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-19 09:53:50 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-19 09:53:50 +0000 |
commit | 2029e934d2db41adfdce8ff7286671abb6d7fbed (patch) | |
tree | d2ecff6d2a1e0ef7798f78e3a016c6953b30ab52 /libavcodec/dct-test.c | |
parent | 0411072ee3c1b1b727cd6f76eda48c4c3b84103b (diff) | |
download | ffmpeg-2029e934d2db41adfdce8ff7286671abb6d7fbed.tar.gz |
Nicely align output columns.
Originally committed as revision 18042 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index fef142fe94..55c92ffacf 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -319,7 +319,7 @@ void dct_error(const char *name, int is_idct, #if 1 // dump systematic errors for(i=0; i<64; i++){ if(i%8==0) printf("\n"); - printf("%5d ", (int)sysErr[i]); + printf("%7d ", (int)sysErr[i]); } printf("\n"); #endif |