Skip to content

Commit

Permalink
Fix misleading log output when HLS target duration updates (fixes #969)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusWichelmann committed Aug 4, 2021
1 parent 68b50f6 commit 513958c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packager/hls/base/media_playlist.cc
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,8 @@ void MediaPlaylist::SetTargetDuration(uint32_t target_duration) {
if (target_duration_set_) {
if (target_duration_ == target_duration)
return;
VLOG(1) << "Updating target duration from " << target_duration << " to "
<< target_duration_;
VLOG(1) << "Updating target duration from " << target_duration_ << " to "
<< target_duration;
}
target_duration_ = target_duration;
target_duration_set_ = true;
Expand Down

0 comments on commit 513958c

Please sign in to comment.