Changeset 236967 in webkit
- Timestamp:
- Oct 9, 2018, 10:40:01 AM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/gstreamer/mse/AppendPipeline.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r236965 r236967 1 2018-10-09 Alicia Boya García <aboya@igalia.com> 2 3 [MSE][GStreamer] r236735 has some dead ASSERTs that need to be moved 4 https://bugs.webkit.org/show_bug.cgi?id=190394 5 6 Reviewed by Xabier Rodriguez-Calvar. 7 8 * platform/graphics/gstreamer/mse/AppendPipeline.cpp: 9 (WebCore::createOptionalParserForFormat): 10 1 11 2018-10-09 Chris Dumez <cdumez@apple.com> 2 12 -
trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp
r236735 r236967 860 860 if (!g_strcmp0(mediaType, "audio/x-opus")) { 861 861 GstElement* opusparse = gst_element_factory_make("opusparse", parserName.get()); 862 ASSERT(opusparse); 862 863 g_return_val_if_fail(opusparse, nullptr); 863 ASSERT(opusparse);864 864 return GRefPtr<GstElement>(opusparse); 865 865 } 866 866 if (!g_strcmp0(mediaType, "audio/x-vorbis")) { 867 867 GstElement* vorbisparse = gst_element_factory_make("vorbisparse", parserName.get()); 868 ASSERT(vorbisparse); 868 869 g_return_val_if_fail(vorbisparse, nullptr); 869 ASSERT(vorbisparse);870 870 return GRefPtr<GstElement>(vorbisparse); 871 871 } 872 872 if (!g_strcmp0(mediaType, "video/x-h264")) { 873 873 GstElement* h264parse = gst_element_factory_make("h264parse", parserName.get()); 874 ASSERT(h264parse); 874 875 g_return_val_if_fail(h264parse, nullptr); 875 ASSERT(h264parse);876 876 return GRefPtr<GstElement>(h264parse); 877 877 }
Note:
See TracChangeset
for help on using the changeset viewer.