[Webkit-unassigned] [Bug 232194] New: Likely typo in MediaPlayerPrivateAVFoundationObjC::updateVideoTracks()

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Oct 22 20:55:00 PDT 2021


https://bugs.webkit.org/show_bug.cgi?id=232194

            Bug ID: 232194
           Summary: Likely typo in
                    MediaPlayerPrivateAVFoundationObjC::updateVideoTracks(
                    )
           Product: WebKit
           Version: Other
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Media
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: jean-yves.avenard at apple.com

In MediaPlayerPrivateAVFoundationObjC::updateVideoTracks() we see:

```
    for (auto& track : m_audioTracks)
        track->resetPropertiesFromTrack();

```

it's almost certainly wrong and should be:
```
    for (auto& track : m_videoTracks)
        track->resetPropertiesFromTrack();
```

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20211023/45cb3f88/attachment.htm>


More information about the webkit-unassigned mailing list