[FFmpeg-devel] [PATCH v1 1/2] avcodec/av1dec: Move message of OBU info back to the beginning

Xiang, Haihao haihao.xiang at intel.com
Wed Dec 27 07:35:32 EET 2023


On Di, 2023-12-26 at 11:31 +0800, fei.w.wang-at-intel.com at ffmpeg.org wrote:
> From: Fei Wang <fei.w.wang at intel.com>
> 
> So that can show OBU info even it doesn't have decomposed content.
> 
> Signed-off-by: Fei Wang <fei.w.wang at intel.com>
> ---
>  libavcodec/av1dec.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c
> index da05a0f039..e8041c1f58 100644
> --- a/libavcodec/av1dec.c
> +++ b/libavcodec/av1dec.c
> @@ -1200,11 +1200,12 @@ static int av1_receive_frame_internal(AVCodecContext
> *avctx, AVFrame *frame)
>          AV1RawOBU *obu = unit->content;
>          const AV1RawOBUHeader *header;
>  
> +        av_log(avctx, AV_LOG_DEBUG, "Obu idx:%d, obu type:%d.\n", i, unit-
> >type);

Could you add message to indicate the content of this unit is available or not ?

Thanks
Haihao

> +
>          if (!obu)
>              continue;
>  
>          header = &obu->header;
> -        av_log(avctx, AV_LOG_DEBUG, "Obu idx:%d, obu type:%d.\n", i, unit-
> >type);
>  
>          switch (unit->type) {
>          case AV1_OBU_SEQUENCE_HEADER:



More information about the ffmpeg-devel mailing list