Skip to content

Commit

Permalink
Revert "Use fixed values for bw estimation when slideshow is enabled" (
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague authored Jul 31, 2018
1 parent 2700763 commit ef89a6d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion erizo/src/erizo/MediaStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ MediaStream::~MediaStream() {

uint32_t MediaStream::getMaxVideoBW() {
uint32_t bitrate = rtcp_processor_ ? rtcp_processor_->getMaxVideoBW() : 0;
bitrate = slide_show_mode_ ? kSlideshowMaxVideoBW : bitrate;
return bitrate;
}

Expand Down
2 changes: 0 additions & 2 deletions erizo/src/erizo/MediaStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@

namespace erizo {

constexpr uint32_t kSlideshowMaxVideoBW = 40; // kbps

class MediaStreamStatsListener {
public:
virtual ~MediaStreamStatsListener() {
Expand Down

0 comments on commit ef89a6d

Please sign in to comment.