Changeset 244074 in webkit
- Timestamp:
- Apr 9, 2019, 3:21:03 AM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r244072 r244074 1 2019-04-09 Eike Rathke <erack@redhat.com> 2 3 Initialize trackTypeAsString for call to GST_INFO_OBJECT() in TrackType::Text 4 https://bugs.webkit.org/show_bug.cgi?id=196350 5 6 Reviewed by Xabier Rodriguez-Calvar. 7 8 trackTypeAsString was uninitialized in the 9 TrackPrivateBaseGStreamer::TrackType::Text case when calling 10 GST_INFO_OBJECT(). 11 12 * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: 13 (WebCore::MediaPlayerPrivateGStreamer::enableTrack): 14 1 15 2019-04-09 Carlos Garcia Campos <cgarcia@igalia.com> 2 16 -
trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
r243644 r244074 814 814 break; 815 815 case TrackPrivateBaseGStreamer::TrackType::Text: 816 propertyName = "current-text"; 817 trackTypeAsString = "text"; 816 818 if (!selectedStreamId.isEmpty() && selectedStreamId == m_currentTextStreamId) { 817 819 GST_INFO_OBJECT(pipeline(), "%s stream: %s already selected, not doing anything.", trackTypeAsString, selectedStreamId.utf8().data()); … … 819 821 } 820 822 821 propertyName = "current-text";822 trackTypeAsString = "text";823 823 if (!m_currentAudioStreamId.isEmpty()) 824 824 selectedStreams.append(m_currentAudioStreamId);
Note:
See TracChangeset
for help on using the changeset viewer.