From 291a0e6c8111e780e85ce7605825d45ab391cc79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Aradi?= <107684421+matyas-streamhpc@users.noreply.github.com> Date: Fri, 8 Nov 2024 17:24:38 +0100 Subject: [PATCH] Fix link (#426) [ROCm/rocdecode commit: 8e1cb2485122599254b8dcc5a83a50c6c33b2834] --- projects/rocdecode/api/rocdecode.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/projects/rocdecode/api/rocdecode.h b/projects/rocdecode/api/rocdecode.h index 39f30f2e8f..a5971e4c54 100644 --- a/projects/rocdecode/api/rocdecode.h +++ b/projects/rocdecode/api/rocdecode.h @@ -1100,16 +1100,15 @@ typedef struct _RocdecAV1PicParams { uint16_t context_update_tile_id; union { + /** \brief flags for current picture + * same syntax and semantic as those in AV1 code + */ struct { - /** \brief flags for current picture - * same syntax and semantic as those in AV1 code - */ - - /** \brief Frame Type - * 0: KEY_FRAME; - * 1: INTER_FRAME; - * 2: INTRA_ONLY_FRAME; - * 3: SWITCH_FRAME + /** \brief Frame Type: + * 0: KEY_FRAME; + * 1: INTER_FRAME; + * 2: INTRA_ONLY_FRAME; + * 3: SWITCH_FRAME * For SWITCH_FRAME, application shall set error_resilient_mode = 1, * refresh_frame_flags, etc. appropriately. And driver will convert it * to INTER_FRAME.