Changeset 83597 in webkit


Ignore:
Timestamp:
Apr 12, 2011 9:29:48 AM (13 years ago)
Author:
Philippe Normand
Message:

2011-04-12 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GStreamer] advertize HTTP Live Streaming mime-type
https://bugs.webkit.org/show_bug.cgi?id=58318

Register the hls mime-type in the internal cache if found in the
typefind factories.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: (WebCore::mimeTypeCache):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r83596 r83597  
     12011-04-12  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Martin Robinson.
     4
     5        [GStreamer] advertize HTTP Live Streaming mime-type
     6        https://bugs.webkit.org/show_bug.cgi?id=58318
     7
     8        Register the hls mime-type in the internal cache if found in the
     9        typefind factories.
     10
     11        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
     12        (WebCore::mimeTypeCache):
     13
    1142011-04-11  MORITA Hajime  <morrita@google.com>
    215
  • trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp

    r83566 r83597  
    15471547                            && handledApplicationSubtypes.contains(String(mimetype[1]))))
    15481548                        cache.add(String(name));
     1549                    else if (g_str_equal(name, "application/x-hls"))
     1550                        cache.add(String("application/vnd.apple.mpegurl"));
     1551
    15491552
    15501553                    g_strfreev(mimetype);
Note: See TracChangeset for help on using the changeset viewer.