Changeset 176541 in webkit
- Timestamp:
- Nov 25, 2014, 6:49:30 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/gstreamer/GStreamerUtilities.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r176537 r176541 1 2014-11-25 Philippe Normand <pnormand@igalia.com> 2 3 [GStreamer] gstmpegts is not initialized 4 https://bugs.webkit.org/show_bug.cgi?id=139039 5 6 Reviewed by Carlos Garcia Campos. 7 8 * platform/graphics/gstreamer/GStreamerUtilities.cpp: 9 (WebCore::initializeGStreamer): Initialize the gstmpegts library. 10 1 11 2014-11-24 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com> 2 12 -
trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.cpp
r169378 r176541 29 29 #include <wtf/MathExtras.h> 30 30 #include <wtf/gobject/GUniquePtr.h> 31 32 #if ENABLE(VIDEO_TRACK) && USE(GSTREAMER_MPEGTS) 33 #define GST_USE_UNSTABLE_API 34 #include <gst/mpegts/mpegts.h> 35 #undef GST_USE_UNSTABLE_API 36 #endif 31 37 32 38 namespace WebCore { … … 133 139 bool gstInitialized = gst_init_check(0, 0, &error.outPtr()); 134 140 ASSERT_WITH_MESSAGE(gstInitialized, "GStreamer initialization failed: %s", error ? error->message : "unknown error occurred"); 141 142 #if ENABLE(VIDEO_TRACK) && USE(GSTREAMER_MPEGTS) 143 if (gstInitialized) 144 gst_mpegts_initialize(); 145 #endif 146 135 147 return gstInitialized; 136 148 }
Note:
See TracChangeset
for help on using the changeset viewer.