【c++】向webrtc学习容器操作

按照插入顺序的 circular buffer

  • 最大1000个元素的循环缓存:
  • D:\XTRANS\m98_rtc\rtc-webrtc\src\modules\video_coding\unique_timestamp_counter.cc
constexpr int kMaxHistory = 1000;
  // The same unique values in the circular buffer in the insertion order.
  std::unique_ptr<uint32_t[]> latest_;
 private:
  int

你可能感兴趣的:(c/c++笔面应用实战,c++,学习,开发语言)