Skip to content

Commit

Permalink
compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DrKLO committed Nov 20, 2020
1 parent 87e3291 commit 6109a1b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion modules/rtp_rtcp/source/rtp_format.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ std::unique_ptr<RtpPacketizer> RtpPacketizer::Create(
case kVideoCodecH265: {
const auto& h265 =
absl::get<RTPVideoHeaderH265>(rtp_video_header.video_type_header);
return absl::make_unique<RtpPacketizerH265>(
return std::make_unique<RtpPacketizerH265>(
payload, limits, h265.packetization_mode);
}
#endif
Expand Down
1 change: 0 additions & 1 deletion modules/rtp_rtcp/source/rtp_format_h265.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ class RtpPacketizerH265 : public RtpPacketizer {

const PayloadSizeLimits limits_;
size_t num_packets_left_;
RTPFragmentationHeader fragmentation_;

RTC_DISALLOW_COPY_AND_ASSIGN(RtpPacketizerH265);
};
Expand Down

0 comments on commit 6109a1b

Please sign in to comment.