Changeset 73700 in webkit


Ignore:
Timestamp:
Dec 10, 2010 2:25:55 AM (13 years ago)
Author:
Philippe Normand
Message:

2010-12-10 Philippe Normand <pnormand@igalia.com>

Reviewed by Gustavo Noronha Silva.

[GStreamer] data: source could also support non-base64 encoded URIs
https://bugs.webkit.org/show_bug.cgi?id=30007

Removed our ancient implementation of dataurisrc. We should now
use the one in gst-plugins-bad which is more mature.

  • GNUmakefile.am:
  • platform/graphics/gstreamer/DataSourceGStreamer.cpp: Removed.
  • platform/graphics/gstreamer/DataSourceGStreamer.h: Removed.
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: (WebCore::doGstInit):

LayoutTests:

Reviewed by Gustavo Noronha Silva.

[GStreamer] data: source could also support non-base64 encoded URIs
https://bugs.webkit.org/show_bug.cgi?id=30007

  • platform/gtk/Skipped: Unskipped media/audio-data-url.html. It should now be much more reliable on the bots running latest GStreamer versions.
Location:
trunk
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r73697 r73700  
     12010-12-10  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [GStreamer] data: source could also support non-base64 encoded URIs
     6        https://bugs.webkit.org/show_bug.cgi?id=30007
     7
     8        * platform/gtk/Skipped: Unskipped media/audio-data-url.html. It
     9        should now be much more reliable on the bots running latest
     10        GStreamer versions.
     11
    1122010-12-10  Hans Wennborg  <hans@chromium.org>
    213
  • trunk/LayoutTests/platform/gtk/Skipped

    r73624 r73700  
    50205020plugins/update-widgets-crash.html
    50215021
    5022 # https://bugs.webkit.org/show_bug.cgi?id=37564
    5023 media/audio-data-url.html
    5024 
    50255022# https://bugs.webkit.org/show_bug.cgi?id=37572
    50265023plugins/open-and-close-window-with-plugin.html
  • trunk/WebCore/ChangeLog

    r73699 r73700  
     12010-12-10  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [GStreamer] data: source could also support non-base64 encoded URIs
     6        https://bugs.webkit.org/show_bug.cgi?id=30007
     7
     8        Removed our ancient implementation of dataurisrc. We should now
     9        use the one in gst-plugins-bad which is more mature.
     10
     11        * GNUmakefile.am:
     12        * platform/graphics/gstreamer/DataSourceGStreamer.cpp: Removed.
     13        * platform/graphics/gstreamer/DataSourceGStreamer.h: Removed.
     14        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
     15        (WebCore::doGstInit):
     16
    1172010-12-10  Zoltan Herczeg  <zherczeg@webkit.org>
    218
  • trunk/WebCore/GNUmakefile.am

    r73690 r73700  
    36363636        WebCore/platform/graphics/cairo/RefPtrCairo.h \
    36373637        WebCore/platform/graphics/cairo/TransformationMatrixCairo.cpp \
    3638         WebCore/platform/graphics/gstreamer/DataSourceGStreamer.cpp \
    3639         WebCore/platform/graphics/gstreamer/DataSourceGStreamer.h \
    36403638        WebCore/platform/graphics/gstreamer/GOwnPtrGStreamer.cpp \
    36413639        WebCore/platform/graphics/gstreamer/GOwnPtrGStreamer.h \
  • trunk/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp

    r73626 r73700  
    2828
    2929#include "ColorSpace.h"
    30 #include "DataSourceGStreamer.h"
    3130#include "Document.h"
    3231#include "Frame.h"
     
    284283        GOwnPtr<GError> error;
    285284        gstInitialized = gst_init_check(0, 0, &error.outPtr());
    286         if (!gstInitialized) {
     285        if (!gstInitialized)
    287286            LOG_VERBOSE(Media, "Could not initialize GStreamer: %s",
    288287                        error ? error->message : "unknown error occurred");
    289         } else {
    290             gst_element_register(0, "webkitmediasrc", GST_RANK_PRIMARY,
    291                                  WEBKIT_TYPE_DATA_SRC);
     288        else
    292289            gst_element_register(0, "webkitwebsrc", GST_RANK_PRIMARY + 100,
    293290                                 WEBKIT_TYPE_WEB_SRC);
    294         }
    295 
    296291    }
    297292    return gstInitialized;
Note: See TracChangeset for help on using the changeset viewer.