Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Jan 30, 2023
1 parent b0cd7a9 commit a390a44
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions worker/src/RTC/Codecs/VP8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,10 +257,7 @@ namespace RTC
if (
this->payloadDescriptor->hasPictureId &&
this->payloadDescriptor->hasTlIndex &&
this->payloadDescriptor->hasTl0PictureIndex &&
!RTC::SeqManager<uint16_t, 15>::IsSeqLowerThan(
this->payloadDescriptor->pictureId,
context->pictureIdManager.GetMaxInput())
this->payloadDescriptor->hasTl0PictureIndex
)
// clang-format on
{
Expand Down Expand Up @@ -325,7 +322,7 @@ namespace RTC
// clang-format off
if (
this->payloadDescriptor->hasTlIndex &&
this->payloadDescriptor->tlIndex > context->GetCurrentTemporalLayer()
this->payloadDescriptor->tlIndex == context->GetTargetTemporalLayer()
)
// clang-format on
{
Expand Down

0 comments on commit a390a44

Please sign in to comment.