diff options
| author | Michael Niedermayer <[email protected]> | 2020-12-27 18:47:44 +0100 |
|---|---|---|
| committer | Michael Niedermayer <[email protected]> | 2021-09-09 13:53:29 +0200 |
| commit | 94fbe523eebd15b0469323a8154680d3de3c89d9 (patch) | |
| tree | 3c5d3bfa5941dcb0c340078fcee6f45ecc24b437 | |
| parent | 1e015c01a2f536fcc26229e4363feb5a94e0ff81 (diff) | |
avformat/mpegts: Fix argument type for av_log
Reviewed-by: Marton Balint <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
(cherry picked from commit 654b21ef176a807bf4e8359a4ed52c629d766100)
| -rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 4080d5a8db..3441e238dc 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -2921,7 +2921,7 @@ static int mpegts_read_header(AVFormatContext *s) s->bit_rate = TS_PACKET_SIZE * 8 * 27000000LL / ts->pcr_incr; st->codecpar->bit_rate = s->bit_rate; st->start_time = ts->cur_pcr; - av_log(ts->stream, AV_LOG_TRACE, "start=%0.3f pcr=%0.3f incr=%d\n", + av_log(ts->stream, AV_LOG_TRACE, "start=%0.3f pcr=%0.3f incr=%"PRId64"\n", st->start_time / 1000000.0, pcrs[0] / 27e6, ts->pcr_incr); } |
