Skip to content

Commit

Permalink
Fix bad quality filter behaviour with VP9 SVC (lynckia#806)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague authored Mar 16, 2017
1 parent a6dabcf commit cb5ddcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erizo/src/erizo/rtp/QualityFilterHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void QualityFilterHandler::write(Context *ctx, std::shared_ptr<dataPacket> packe
uint32_t ssrc = rtp_header->getSSRC();
uint16_t sequence_number = rtp_header->getSeqNumber();

if (ssrc != last_ssrc_received_) {
if (last_ssrc_received_ != 0 && ssrc != last_ssrc_received_) {
receiving_multiple_ssrc_ = true;
}

Expand Down

0 comments on commit cb5ddcd

Please sign in to comment.