Title: [286110] trunk/Source/ThirdParty/libwebrtc
Revision
286110
Author
[email protected]
Date
2021-11-22 00:48:30 -0800 (Mon, 22 Nov 2021)

Log Message

Remove h264_bitstream_parser spurious logging
https://bugs.webkit.org/show_bug.cgi?id=233361

Reviewed by Eric Carlson.

* Source/webrtc/common_video/h264/h264_bitstream_parser.cc:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (286109 => 286110)


--- trunk/Source/ThirdParty/libwebrtc/ChangeLog	2021-11-22 08:46:03 UTC (rev 286109)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog	2021-11-22 08:48:30 UTC (rev 286110)
@@ -1,3 +1,12 @@
+2021-11-22  Youenn Fablet  <[email protected]>
+
+        Remove h264_bitstream_parser spurious logging
+        https://bugs.webkit.org/show_bug.cgi?id=233361
+
+        Reviewed by Eric Carlson.
+
+        * Source/webrtc/common_video/h264/h264_bitstream_parser.cc:
+
 2021-11-17  Youenn Fablet  <[email protected]>
 
         Safari 15.1 H264 FullHD video encode/decode fails

Modified: trunk/Source/ThirdParty/libwebrtc/Source/webrtc/common_video/h264/h264_bitstream_parser.cc (286109 => 286110)


--- trunk/Source/ThirdParty/libwebrtc/Source/webrtc/common_video/h264/h264_bitstream_parser.cc	2021-11-22 08:46:03 UTC (rev 286109)
+++ trunk/Source/ThirdParty/libwebrtc/Source/webrtc/common_video/h264/h264_bitstream_parser.cc	2021-11-22 08:48:30 UTC (rev 286110)
@@ -184,7 +184,9 @@
   if ((pps_->weighted_pred_flag && (slice_type == H264::SliceType::kP ||
                                     slice_type == H264::SliceType::kSp)) ||
       (pps_->weighted_bipred_idc == 1 && slice_type == H264::SliceType::kB)) {
+#if !defined(WEBRTC_WEBKIT_BUILD) || !defined(WEBRTC_MAC)
     RTC_LOG(LS_ERROR) << "Streams with pred_weight_table unsupported.";
+#endif
     return kUnsupportedStream;
   }
   // if ((weighted_pred_flag && (slice_type == P || slice_type == SP)) ||
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to