Changeset 270727 in webkit


Ignore:
Timestamp:
Dec 11, 2020, 6:36:36 PM (5 years ago)
Author:
jer.noble@apple.com
Message:

[Cocoa] Add Experimental VP8 support
https://bugs.webkit.org/show_bug.cgi?id=219732
<rdar://problem/72171055>

Reviewed by Eric Carlson.

Merge error after r270720; Use the local value isKey, rather than querying the VP9 header parser
to tell whether the incoming frame is a keyframe.

  • platform/graphics/cocoa/SourceBufferParserWebM.cpp:

(WebCore::SourceBufferParserWebM::VideoTrackData::createSampleBuffer):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r270725 r270727  
     12020-12-11  Jer Noble  <jer.noble@apple.com>
     2
     3        [Cocoa] Add Experimental VP8 support
     4        https://bugs.webkit.org/show_bug.cgi?id=219732
     5        <rdar://problem/72171055>
     6
     7        Reviewed by Eric Carlson.
     8
     9        Merge error after r270720; Use the local value isKey, rather than querying the VP9 header parser
     10        to tell whether the incoming frame is a keyframe.
     11
     12        * platform/graphics/cocoa/SourceBufferParserWebM.cpp:
     13        (WebCore::SourceBufferParserWebM::VideoTrackData::createSampleBuffer):
     14
    1152020-12-11  Ryosuke Niwa  <rniwa@webkit.org>
    216
  • trunk/Source/WebCore/platform/graphics/cocoa/SourceBufferParserWebM.cpp

    r270722 r270727  
    10621062    m_currentBlockBufferPosition = 0;
    10631063
    1064     if (!m_headerParser.key()) {
     1064    if (!isKey) {
    10651065        auto attachmentsArray = CMSampleBufferGetSampleAttachmentsArray(sampleBuffer.get(), true);
    10661066        ASSERT(attachmentsArray);
Note: See TracChangeset for help on using the changeset viewer.