diff options
Diffstat (limited to 'src/decoder_impl.cc')
-rw-r--r-- | src/decoder_impl.cc | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/src/decoder_impl.cc b/src/decoder_impl.cc index 751671d..e23903c 100644 --- a/src/decoder_impl.cc +++ b/src/decoder_impl.cc @@ -36,7 +36,6 @@ #include "src/utils/common.h" #include "src/utils/constants.h" #include "src/utils/logging.h" -#include "src/utils/parameter_tree.h" #include "src/utils/raw_bit_reader.h" #include "src/utils/segmentation.h" #include "src/utils/threadpool.h" @@ -631,10 +630,6 @@ DecoderImpl::~DecoderImpl() { } StatusCode DecoderImpl::Init() { - if (!GenerateWedgeMask(&wedge_masks_)) { - LIBGAV1_DLOG(ERROR, "GenerateWedgeMask() failed."); - return kStatusOutOfMemory; - } if (!output_frame_queue_.Init(kMaxLayers)) { LIBGAV1_DLOG(ERROR, "output_frame_queue_.Init() failed."); return kStatusOutOfMemory; @@ -857,6 +852,10 @@ StatusCode DecoderImpl::ParseAndSchedule(const uint8_t* data, size_t size, LIBGAV1_DLOG(ERROR, "InitializeQuantizerMatrix() failed."); return kStatusOutOfMemory; } + if (!MaybeInitializeWedgeMasks(obu->frame_header().frame_type)) { + LIBGAV1_DLOG(ERROR, "InitializeWedgeMasks() failed."); + return kStatusOutOfMemory; + } if (IsNewSequenceHeader(*obu)) { const ObuSequenceHeader& sequence_header = obu->sequence_header(); const Libgav1ImageFormat image_format = @@ -1050,6 +1049,10 @@ StatusCode DecoderImpl::DecodeTemporalUnit(const TemporalUnit& temporal_unit, LIBGAV1_DLOG(ERROR, "InitializeQuantizerMatrix() failed."); return kStatusOutOfMemory; } + if (!MaybeInitializeWedgeMasks(obu->frame_header().frame_type)) { + LIBGAV1_DLOG(ERROR, "InitializeWedgeMasks() failed."); + return kStatusOutOfMemory; + } if (IsNewSequenceHeader(*obu)) { const ObuSequenceHeader& sequence_header = obu->sequence_header(); const Libgav1ImageFormat image_format = @@ -1278,8 +1281,7 @@ StatusCode DecoderImpl::DecodeTiles( // without having to check for boundary conditions. if (!frame_scratch_buffer->block_parameters_holder.Reset( frame_header.rows4x4 + kMaxBlockHeight4x4, - frame_header.columns4x4 + kMaxBlockWidth4x4, - sequence_header.use_128x128_superblock)) { + frame_header.columns4x4 + kMaxBlockWidth4x4)) { return kStatusOutOfMemory; } const dsp::Dsp* const dsp = @@ -1646,6 +1648,17 @@ bool DecoderImpl::IsNewSequenceHeader(const ObuParser& obu) { return sequence_header_changed; } +bool DecoderImpl::MaybeInitializeWedgeMasks(FrameType frame_type) { + if (IsIntraFrame(frame_type) || wedge_masks_initialized_) { + return true; + } + if (!GenerateWedgeMask(&wedge_masks_)) { + return false; + } + wedge_masks_initialized_ = true; + return true; +} + bool DecoderImpl::MaybeInitializeQuantizerMatrix( const ObuFrameHeader& frame_header) { if (quantizer_matrix_initialized_ || !frame_header.quantizer.use_matrix) { |