avcodec/av1dec: Move message of OBU info back to the beginning

So that can show OBU info even it doesn't have decomposed content. And
add OBU content status into the message.

Signed-off-by: Fei Wang <fei.w.wang@intel.com>
release/7.0
Fei Wang 11 months ago committed by Haihao Xiang
parent 2b17a74df5
commit 3f7e50f539
  1. 3
      libavcodec/av1dec.c

@ -1200,11 +1200,12 @@ static int av1_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame)
AV1RawOBU *obu = unit->content; AV1RawOBU *obu = unit->content;
const AV1RawOBUHeader *header; const AV1RawOBUHeader *header;
av_log(avctx, AV_LOG_DEBUG, "OBU idx:%d, type:%d, content available:%d.\n", i, unit->type, !!obu);
if (!obu) if (!obu)
continue; continue;
header = &obu->header; header = &obu->header;
av_log(avctx, AV_LOG_DEBUG, "Obu idx:%d, obu type:%d.\n", i, unit->type);
switch (unit->type) { switch (unit->type) {
case AV1_OBU_SEQUENCE_HEADER: case AV1_OBU_SEQUENCE_HEADER:

Loading…
Cancel
Save