Skip to content
Snippets Groups Projects
Commit db1a38ff authored by Steve Lhomme's avatar Steve Lhomme
Browse files

packetizer:av1: fix debug formatting

parent 0b0eebfe
No related branches found
No related tags found
Loading
......@@ -224,7 +224,7 @@ static block_t *GatherAndValidateChain(decoder_t *p_dec, block_t *p_outputchain)
if(p_outputchain)
{
#ifdef DEBUG_AV1_PACKETIZER
msg_Dbg(p_dec, "TU output %ld", p_outputchain->i_dts);
msg_Dbg(p_dec, "TU output %" PRId64, p_outputchain->i_dts);
for(block_t *p = p_outputchain; p; p=p->p_next)
{
enum av1_obu_type_e OBUtype = AV1_OBUGetType(p->p_buffer);
......@@ -237,7 +237,7 @@ static block_t *GatherAndValidateChain(decoder_t *p_dec, block_t *p_outputchain)
p_sys->p_sequence_header);
if(p_fh)
{
msg_Dbg(p_dec,"OBU TYPE %d sz %ld dts %ld type %d %d",
msg_Dbg(p_dec,"OBU TYPE %d sz %zu dts %" PRId64 " type %d %d",
OBUtype, p->i_buffer, p->i_dts,
AV1_get_frame_type(p_fh),
AV1_get_frame_visibility(p_fh));
......@@ -245,7 +245,7 @@ static block_t *GatherAndValidateChain(decoder_t *p_dec, block_t *p_outputchain)
AV1_release_frame_header(p_fh);
}
}
else msg_Dbg(p_dec, "OBU TYPE %d sz %ld dts %ld", OBUtype, p->i_buffer, p->i_dts);
else msg_Dbg(p_dec, "OBU TYPE %d sz %zu dts %" PRId64, OBUtype, p->i_buffer, p->i_dts);
}
#endif
if(p_outputchain->i_flags & BLOCK_FLAG_DROP)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment