⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 286110 in webkit


Ignore:
Timestamp:
Nov 22, 2021, 12:48:30 AM (5 years ago)
Author:
youenn@apple.com
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:
Location:
trunk/Source/ThirdParty/libwebrtc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/libwebrtc/ChangeLog

    r285928 r286110  
     12021-11-22  Youenn Fablet  <youenn@apple.com>
     2
     3        Remove h264_bitstream_parser spurious logging
     4        https://bugs.webkit.org/show_bug.cgi?id=233361
     5
     6        Reviewed by Eric Carlson.
     7
     8        * Source/webrtc/common_video/h264/h264_bitstream_parser.cc:
     9
    1102021-11-17  Youenn Fablet  <youenn@apple.com>
    211
  • trunk/Source/ThirdParty/libwebrtc/Source/webrtc/common_video/h264/h264_bitstream_parser.cc

    r285577 r286110  
    185185                                    slice_type == H264::SliceType::kSp)) ||
    186186      (pps_->weighted_bipred_idc == 1 && slice_type == H264::SliceType::kB)) {
     187#if !defined(WEBRTC_WEBKIT_BUILD) || !defined(WEBRTC_MAC)
    187188    RTC_LOG(LS_ERROR) << "Streams with pred_weight_table unsupported.";
     189#endif
    188190    return kUnsupportedStream;
    189191  }
Note: See TracChangeset for help on using the changeset viewer.