Skip to content

Commit

Permalink
Correct. This is how the default should be calculated.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianFeldmann committed Oct 6, 2024
1 parent 14e53a7 commit 49de666
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions YUViewLib/src/parser/VVC/slice_header.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,13 @@ void slice_header::parse(SubByteReaderLogging &reader,
{
this->sh_cabac_init_flag = reader.readFlag("sh_cabac_init_flag");
}
if (picHeader->ph_temporal_mvp_enabled_flag)
this->sh_collocated_from_l0_flag =
(this->sh_slice_type == SliceType::B) ? picHeader->ph_collocated_from_l0_flag : true;
if (picHeader->ph_temporal_mvp_enabled_flag && !pps->pps_rpl_info_in_ph_flag)
{
if (this->sh_slice_type == SliceType::B)
this->sh_collocated_from_l0_flag = reader.readFlag("sh_collocated_from_l0_flag");
else
this->sh_collocated_from_l0_flag =
(this->sh_slice_type == SliceType::B) ? picHeader->ph_collocated_from_l0_flag : true;
if ((this->sh_collocated_from_l0_flag && this->NumRefIdxActive[0] > 1) ||
(!this->sh_collocated_from_l0_flag && this->NumRefIdxActive[1] > 1))
{
Expand Down

0 comments on commit 49de666

Please sign in to comment.