Changeset 270727 in webkit
- Timestamp:
- Dec 11, 2020, 6:36:36 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r270725 r270727 1 2020-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 1 15 2020-12-11 Ryosuke Niwa <rniwa@webkit.org> 2 16 -
trunk/Source/WebCore/platform/graphics/cocoa/SourceBufferParserWebM.cpp
r270722 r270727 1062 1062 m_currentBlockBufferPosition = 0; 1063 1063 1064 if (! m_headerParser.key()) {1064 if (!isKey) { 1065 1065 auto attachmentsArray = CMSampleBufferGetSampleAttachmentsArray(sampleBuffer.get(), true); 1066 1066 ASSERT(attachmentsArray);
Note:
See TracChangeset
for help on using the changeset viewer.