diff options
author | Sebastian Ramacher <sramacher@debian.org> | 2024-12-29 12:50:37 +0000 |
---|---|---|
committer | Sebastian Ramacher <sramacher@debian.org> | 2024-12-29 12:50:37 +0000 |
commit | 873c687c09e0a1a78a8f3601d31330ad1897e484 (patch) | |
tree | ff2fa2e2d27b55c002a6d46d50aab2c66e0bf21a /src/yuv_buffer.h | |
parent | 395b1f6877fbc2666383f3428f17400c35aa52a4 (diff) | |
parent | b9ae809f200982119d16ec9613f3db95eca923b9 (diff) | |
download | libgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.tar.gz libgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.tar.bz2 libgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.zip |
Merge branch 'master' into 'scrub-obsolete'
# Conflicts:
# debian/changelog
Diffstat (limited to 'src/yuv_buffer.h')
-rw-r--r-- | src/yuv_buffer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/yuv_buffer.h b/src/yuv_buffer.h index b9e8cd3..d7818bd 100644 --- a/src/yuv_buffer.h +++ b/src/yuv_buffer.h @@ -24,6 +24,7 @@ #include <type_traits> #include "src/gav1/frame_buffer.h" +#include "src/utils/compiler_attributes.h" #include "src/utils/constants.h" namespace libgav1 { @@ -146,6 +147,11 @@ class YuvBuffer { private: static constexpr int kFrameBufferRowAlignment = 16; + +#if LIBGAV1_MSAN + void InitializeFrameBorders(); +#endif + int bitdepth_ = 0; bool is_monochrome_ = false; |