Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 3efaba1

Browse files
authored
Remove log when picture_id is <= 0. (#183)
1 parent 676fad3 commit 3efaba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

call/rtp_payload_params.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ void RtpPayloadParams::H265ToGeneric(const CodecSpecificInfoH265& h265_info,
511511
bool is_keyframe,
512512
RTPVideoHeader* rtp_video_header) {
513513
if (h265_info.picture_id <= 0) {
514-
RTC_LOG(LS_WARNING) << "Invalid HEVC picture ID.";
514+
// picture_id is only used by cloud gaming.
515515
return;
516516
}
517517
RTPVideoHeader::GenericDescriptorInfo& generic =

0 commit comments

Comments
 (0)