avutil/tests/audio_fifo: don't print trailing spaces

This matches the tests/ref files, which were manually stripped.

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
Kacper Michajłow
2025-08-01 21:50:27 +02:00
parent 7b5b29910a
commit 3e69541ff3

View File

@@ -75,7 +75,8 @@ static void print_audio_bytes(const TestStruct *test_sample, void **data_planes,
int order = !HAVE_BIGENDIAN ? (byte_offset - f - 1) : f;
printf("%02x", *((uint8_t*)data_planes[p] + b + order));
}
putchar(' ');
if (b + byte_offset < line_size)
putchar(' ');
}
putchar('\n');
}