mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-01-06 22:25:36 +01:00
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
patch by Steve Lhomme, slhomme divxcorp com Originally committed as revision 6868 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Diego Biurrun
parent
523fc7c17d
commit
949b1a13bf
@@ -4616,7 +4616,7 @@ int64_t g=0;
|
||||
for(x=0; x<width; x++){
|
||||
int64_t d= buffer[0][x + y*width];
|
||||
error += d*d;
|
||||
if(FFABS(width/2-x)<9 && FFABS(height/2-y)<9 && level==2) printf("%8lld ", d);
|
||||
if(FFABS(width/2-x)<9 && FFABS(height/2-y)<9 && level==2) printf("%8"PRId64" ", d);
|
||||
}
|
||||
if(FFABS(height/2-y)<9 && level==2) printf("\n");
|
||||
}
|
||||
@@ -4630,7 +4630,7 @@ int64_t g=0;
|
||||
for(level=0; level<s.spatial_decomposition_count; level++){
|
||||
printf(" {");
|
||||
for(orientation=0; orientation<4; orientation++){
|
||||
printf("%8lld,", errors[level][orientation]/g);
|
||||
printf("%8"PRId64",", errors[level][orientation]/g);
|
||||
}
|
||||
printf("},\n");
|
||||
}
|
||||
@@ -4669,7 +4669,7 @@ int64_t g=0;
|
||||
for(x=0; x<width; x++){
|
||||
int64_t d= buffer[0][x + y*width];
|
||||
error += d*d;
|
||||
if(FFABS(width/2-x)<9 && FFABS(height/2-y)<9) printf("%8lld ", d);
|
||||
if(FFABS(width/2-x)<9 && FFABS(height/2-y)<9) printf("%8"PRId64" ", d);
|
||||
}
|
||||
if(FFABS(height/2-y)<9) printf("\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user