Changeset 151681 in webkit


Ignore:
Timestamp:
Jun 18, 2013 5:24:02 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Fix after r151673
https://bugs.webkit.org/show_bug.cgi?id=116042

Patch by Víctor Manuel Jáquez Leal <vjaquez@igalia.com> on 2013-06-18
Reviewed by Philippe Normand.

Removed a spurious semicolon in the video sink caps definition.

No new tests, no behavior change.

  • platform/graphics/gstreamer/VideoSinkGStreamer.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r151680 r151681  
     12013-06-18  Víctor Manuel Jáquez Leal  <vjaquez@igalia.com>
     2
     3        Fix after r151673
     4        https://bugs.webkit.org/show_bug.cgi?id=116042
     5
     6        Reviewed by Philippe Normand.
     7
     8        Removed a spurious semicolon in the video sink caps definition.
     9
     10        No new tests, no behavior change.
     11
     12        * platform/graphics/gstreamer/VideoSinkGStreamer.cpp:
     13
    1142013-06-18  Praveen R Jadhav  <praveen.j@samsung.com>
    215
  • trunk/Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp

    r151673 r151681  
    4949#endif
    5050#if GST_CHECK_VERSION(1, 1, 0)
    51 #define GST_FEATURED_CAPS GST_VIDEO_CAPS_MAKE_WITH_FEATURES(GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META, GST_CAPS_FORMAT)
     51#define GST_FEATURED_CAPS GST_VIDEO_CAPS_MAKE_WITH_FEATURES(GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META, GST_CAPS_FORMAT) ";"
    5252#else
    5353#define GST_FEATURED_CAPS
     
    5656
    5757#ifdef GST_API_VERSION_1
    58 #define WEBKIT_VIDEO_SINK_PAD_CAPS GST_FEATURED_CAPS ";" GST_VIDEO_CAPS_MAKE(GST_CAPS_FORMAT)
     58#define WEBKIT_VIDEO_SINK_PAD_CAPS GST_FEATURED_CAPS GST_VIDEO_CAPS_MAKE(GST_CAPS_FORMAT)
    5959#else
    6060#if G_BYTE_ORDER == G_LITTLE_ENDIAN
Note: See TracChangeset for help on using the changeset viewer.