Skip to content

Commit

Permalink
Fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Feb 25, 2021
1 parent 0cd3e34 commit 20374ea
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions trunk/src/app/srs_app_rtc_jitbuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1800,6 +1800,9 @@ SrsRtpFrameBuffer* SrsRtpJitterBuffer::ExtractAndSetDecode(uint32_t timestamp)
}
}

// Fix build warnings: variable ‘continuous’ set but not used
(void)continuous;

// The state must be changed to decoding before cleaning up zero sized
// frames to avoid empty frames being cleaned up and then given to the
// decoder. Propagates the missing_frame bit.
Expand Down

0 comments on commit 20374ea

Please sign in to comment.