diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2020-11-03 15:34:28 +0100 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2020-11-11 18:36:09 +0100 |
commit | e1efff89068c234fcae669f429fefb4e938d1894 (patch) | |
tree | cb378e777bcc2d9f7f78cc655fb905940a506550 /libavcodec/av1dec.h | |
parent | f6dc285fb5f30406b275b968ee438a738da799d1 (diff) | |
download | ffmpeg-e1efff89068c234fcae669f429fefb4e938d1894.tar.gz |
avcodec/av1dec: expose skip mode frame index
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
Co-authored-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/av1dec.h')
-rw-r--r-- | libavcodec/av1dec.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/av1dec.h b/libavcodec/av1dec.h index b58bc53961..8cf50f0d59 100644 --- a/libavcodec/av1dec.h +++ b/libavcodec/av1dec.h @@ -41,6 +41,9 @@ typedef struct AV1Frame { uint8_t gm_type[AV1_NUM_REF_FRAMES]; int32_t gm_params[AV1_NUM_REF_FRAMES][6]; + + uint8_t order_hint; + uint8_t skip_mode_frame_idx[2]; } AV1Frame; typedef struct TileGroupInfo { |