Skip to content
Snippets Groups Projects
Commit fd9e863c authored by Marvin Scholz's avatar Marvin Scholz
Browse files

videotoolbox: change DPB log message to debug

This message is not helpful for the average user.
parent 752075f3
No related branches found
No related tags found
Loading
......@@ -916,7 +916,7 @@ static void OnDecodedFrame(decoder_t *p_dec, frame_info_t *p_info)
p_sys->i_pic_reorder_max++;
pic_pacer_UpdateReorderMax(p_sys->pic_pacer,
p_sys->i_pic_reorder_max, p_info->i_num_ts);
msg_Info(p_dec, "Raising max DPB to %"PRIu8, p_sys->i_pic_reorder_max);
msg_Dbg(p_dec, "Raising max DPB to %"PRIu8, p_sys->i_pic_reorder_max);
break;
}
else if (!p_sys->b_poc_based_reorder &&
......@@ -927,7 +927,7 @@ static void OnDecodedFrame(decoder_t *p_dec, frame_info_t *p_info)
p_sys->i_pic_reorder_max++;
pic_pacer_UpdateReorderMax(p_sys->pic_pacer,
p_sys->i_pic_reorder_max, p_info->i_num_ts);
msg_Info(p_dec, "Raising max DPB to %"PRIu8, p_sys->i_pic_reorder_max);
msg_Dbg(p_dec, "Raising max DPB to %"PRIu8, p_sys->i_pic_reorder_max);
break;
}
}
......
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