[Webkit-unassigned] [Bug 168015] [GStreamer][MSE] Some GStreamer log messages are generated with the 'default' category

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Feb 9 01:36:23 PST 2017


https://bugs.webkit.org/show_bug.cgi?id=168015

--- Comment #6 from Enrique Ocaña <eocanha at igalia.com> ---
Comment on attachment 300961
  --> https://bugs.webkit.org/attachment.cgi?id=300961
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=300961&action=review

>> Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp:45
>> +#define GST_CAT_DEFAULT webkit_appendpipeline_debug
> 
> Please use webkit_mse_debug, that is defined in MediaPlayerPrivateGStreamerMSE.cpp. For this you will need to make the declaration in MediaPlayerPrivateGStreamerMSE.cpp as _EXTERN as it is done for GStreamer and GStreamerBase.

In any case, shouldn't the define GST_CAT_DEFAULT be still needed? I've explored the GST_TRACE() macro expansion and it expands to this code (in my particular case):

do{        \
  if ((GST_LEVEL_TRACE <= GST_LEVEL_COUNT && GST_LEVEL_TRACE <= _gst_debug_min)) {                        \
    gst_debug_log ((GST_CAT_DEFAULT), (GST_LEVEL_TRACE), "/home/enrique/WebKit/Source/WebCore/platform/graphics/gstreamer/mse/MediaSourceClientGStreamerMSE.cpp", ((const char*) (__FUNCTION__)), 65,    \
        (GObject *) (0), "Adding SourceBuffer to AppendPipeline: this=%p sourceBuffer=%p appendPipeline=%p", this, sourceBufferPrivate.get(), appendPipeline.get());                \
  }                                    \
}while (0)

This seems to imply that some value is needed for GST_CAT_DEFAULT. Since that define is inside MediaPlayerPrivateGStreamerMSE.cpp and not in the header (because it shouldn't be in the header in order to avoid clashing with local definitions when the header in included from other cpp files), it would remain undefined in the case of AppendPipeline, PlaybackPipeline and MediaSourceClientGStreamer. Therefore, I think we need to define it here by ourselves with the same value used in MediaPlayerPrivateGStreamerMSE.cpp:

#define GST_CAT_DEFAULT webkit_mse_debug

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170209/a58eb6e8/attachment-0001.html>


More information about the webkit-unassigned mailing list