Skip to content

Commit 19d5987

Browse files
authored
patest_converters.c: fix printed table label: "dynamic range" -> "max abs diff" (#1043)
The test computes maximum absolute differences over a non-exhaustive test signal. It does not really establish the dynamic range of the conversion. Update the labels on the printed output accordingly.
1 parent 87e35e7 commit 19d5987

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/patest_converters.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,8 @@ int main( int argc, const char **argv )
334334
printf( "}}}\n" ); // trac preformated text tag
335335

336336
printf( "\n" );
337-
printf( "=== Combined dynamic range (src->dest->float32) ===\n" );
338-
printf( "Key: Noise amplitude in dBfs, X - fail (either above failed or dest->float32 failed)\n" );
337+
printf( "=== Maximum absolute difference src -> dest -> float32 (non-exhaustive) ===\n" );
338+
printf( "Key: Worst error amplitude in dBfs, X - fail (either above failed or dest->float32 failed)\n" );
339339
printf( "{{{\n" ); // trac preformated text tag
340340
printf( "in| out: " );
341341
for( destinationFormatIndex = 0; destinationFormatIndex < SAMPLE_FORMAT_COUNT; ++destinationFormatIndex ){

0 commit comments

Comments
 (0)