mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-08-09 09:32:43 +00:00
avfilter/vf_quirc: Changed character specifier
```
vf_quirc.c: In function 'filter_frame':
vf_quirc.c:104:46: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'int64_t' {aka 'long long int'} [-Wformat=]
104 | "Found count %d codes in image #%ld\n", codes_count, inl->frame_count_out);
| ~~^ ~~~~~~~~~~~~~~~~~~~~
| | |
| long int int64_t {aka long long int}
| %lld
```
This commit is contained in:
@@ -101,7 +101,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
|
||||
|
||||
codes_count = quirc_count(quirc->quirc);
|
||||
av_log(ctx, AV_LOG_VERBOSE,
|
||||
"Found count %d codes in image #%ld\n", codes_count, inl->frame_count_out);
|
||||
"Found count %d codes in image #%" PRId64 "\n", codes_count, inl->frame_count_out);
|
||||
|
||||
if (codes_count) {
|
||||
int i, j;
|
||||
|
||||
Reference in New Issue
Block a user