Changeset 180997 in webkit


Ignore:
Timestamp:
Mar 4, 2015 5:24:43 AM (9 years ago)
Author:
commit-queue@webkit.org
Message:

[GStreamer] the GST_SCHEDULING_FLAG_BANDWIDTH_LIMITED should be wrapped by a ifdef
https://bugs.webkit.org/show_bug.cgi?id=142274

Patch by Philippe Normand <pnormand@igalia.com> on 2015-03-04
Reviewed by Carlos Garcia Campos.

Don't handle scheduling queries if building against versions of
GStreamer older than 1.2.0.

  • platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:

(webKitWebSrcQueryWithParent):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r180996 r180997  
     12015-03-04  Philippe Normand  <pnormand@igalia.com>
     2
     3        [GStreamer] the GST_SCHEDULING_FLAG_BANDWIDTH_LIMITED should be wrapped by a ifdef
     4        https://bugs.webkit.org/show_bug.cgi?id=142274
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Don't handle scheduling queries if building against versions of
     9        GStreamer older than 1.2.0.
     10
     11        * platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:
     12        (webKitWebSrcQueryWithParent):
     13
    1142015-03-03  Yoav Weiss  <yoav@yoav.ws>
    215
  • trunk/Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp

    r179866 r180997  
    590590        break;
    591591    }
     592#if GST_CHECK_VERSION(1, 2, 0)
    592593    case GST_QUERY_SCHEDULING: {
    593594        GstSchedulingFlags flags;
     
    599600        break;
    600601    }
     602#endif
    601603    default: {
    602604        GRefPtr<GstPad> target = adoptGRef(gst_ghost_pad_get_target(GST_GHOST_PAD_CAST(pad)));
Note: See TracChangeset for help on using the changeset viewer.