mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-21 23:00:04 +08:00
ffmpeg: Use av_pkt_dump_log2
This makes dumped packet timestamps proper for streams with timebases other than AV_TIME_BASE. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:

committed by
Luca Barbato

parent
863c471638
commit
5e33e7bdac
3
ffmpeg.c
3
ffmpeg.c
@ -2578,7 +2578,8 @@ static int transcode(AVFormatContext **output_files,
|
|||||||
memset(no_packet, 0, sizeof(no_packet));
|
memset(no_packet, 0, sizeof(no_packet));
|
||||||
|
|
||||||
if (do_pkt_dump) {
|
if (do_pkt_dump) {
|
||||||
av_pkt_dump_log(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump);
|
av_pkt_dump_log2(NULL, AV_LOG_DEBUG, &pkt, do_hex_dump,
|
||||||
|
is->streams[pkt.stream_index]);
|
||||||
}
|
}
|
||||||
/* the following test is needed in case new streams appear
|
/* the following test is needed in case new streams appear
|
||||||
dynamically in stream : we ignore them */
|
dynamically in stream : we ignore them */
|
||||||
|
Reference in New Issue
Block a user