I had the same question, and looking at ffplay , the source found this:
av_log(NULL, AV_LOG_INFO, "%7.2f %s:%7.3f fd=%4d aq=%5dKB vq=%5dKB sq=%5dB f=%"PRId64"/%"PRId64" \r", get_master_clock(is), (is->audio_st && is->video_st) ? "AV" : (is->video_st ? "MV" : (is->audio_st ? "MA" : " ")), av_diff, is->frame_drops_early + is->frame_drops_late, aqsize / 1024, vqsize / 1024, sqsize, is->video_st ? is->viddec.avctx->pts_correction_num_faulty_dts : 0, is->video_st ? is->viddec.avctx->pts_correction_num_faulty_pts : 0)
Playing a sample video received sample output:
7.11 AV: 0.003 fd= 1 aq= 21KB vq= 321KB sq= 0B f=0/0
7.11 (master clock) - time from the beginning of the stream / video
AV (avdiff) Difference between audio and video tags
fd Number of frames dropped
aq audio frame size
vq video frame size
sq subtitle frame size
f Timestamp correction speed (not 100%)
MV , MA means only video stream, audio stream only respectively.
source share