You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
fate-bprint: try to workaround platform specific value.
this should fix some fate failures Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -211,7 +211,7 @@ int main(void)
|
||||
|
||||
av_bprint_init(&b, 0, 1);
|
||||
bprint_pascal(&b, 25);
|
||||
printf("Long text in automatic buffer: %zu/%u\n", strlen(b.str), b.len);
|
||||
printf("Long text in automatic buffer: %zu/%u\n", strlen(b.str)/8*8, b.len);
|
||||
/* Note that the size of the automatic buffer is arch-dependant. */
|
||||
|
||||
av_bprint_init(&b, 0, 0);
|
||||
|
||||
Reference in New Issue
Block a user