Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Fix [u]int64_t specifier string

2020-03-19 Thread Marton Balint
On Wed, 18 Mar 2020, Anton Khirnov wrote: Quoting Andreas Rheinhardt (2020-03-18 03:56:18) PRId64 and PRIu64 already expand to the complete specifier; adding another 'd' at the end is wrong and just leads to warnings that say that only an option like '-frames:v 2d' will be used, although said

Re: [FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Fix [u]int64_t specifier string

2020-03-18 Thread Anton Khirnov
Quoting Andreas Rheinhardt (2020-03-18 03:56:18) > PRId64 and PRIu64 already expand to the complete specifier; adding > another 'd' at the end is wrong and just leads to warnings that say > that only an option like '-frames:v 2d' will be used, although said > option won't be accepted at all ('Expec

[FFmpeg-devel] [PATCH] fftools/ffmpeg_opt: Fix [u]int64_t specifier string

2020-03-17 Thread Andreas Rheinhardt
PRId64 and PRIu64 already expand to the complete specifier; adding another 'd' at the end is wrong and just leads to warnings that say that only an option like '-frames:v 2d' will be used, although said option won't be accepted at all ('Expected int64 for frames:v but found 2d'). Signed-off-by: An