Commit adcfc053 authored by Michael Niedermayer's avatar Michael Niedermayer

mxfenc: fix av_log data type for dts paramater

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f2a7e1a6
......@@ -2107,7 +2107,7 @@ static int mxf_interleave_get_packet(AVFormatContext *s, AVPacket *out, AVPacket
}
*out = pktl->pkt;
av_dlog(s, "out st:%d dts:%lld\n", (*out).stream_index, (*out).dts);
av_dlog(s, "out st:%d dts:%"PRId64"\n", (*out).stream_index, (*out).dts);
s->packet_buffer = pktl->next;
if(s->streams[pktl->pkt.stream_index]->last_in_packet_buffer == pktl)
s->streams[pktl->pkt.stream_index]->last_in_packet_buffer= NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment