소스 검색

H265RtpDepacketizer: Fix missing <algorithm> header

Needed for std::remove_if.
Robert Edmonds 10 달 전
부모
커밋
f787617e7b
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/h265rtpdepacketizer.cpp

+ 2 - 0
src/h265rtpdepacketizer.cpp

@@ -14,6 +14,8 @@
 
 #include "impl/internals.hpp"
 
+#include <algorithm>
+
 namespace rtc {
 
 const binary naluLongStartCode = {byte{0}, byte{0}, byte{0}, byte{1}};