Skip to content

Commit

Permalink
[GStreamer] Debug category name collisions in video encoders
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=255926

Reviewed by Xabier Rodriguez-Calvar.

* Source/WebCore/platform/gstreamer/VideoEncoderPrivateGStreamer.cpp: webkitvideoencoder is a name
already used by the WebCodec video encoder, so rename the private encoder debug category.

Canonical link: https://commits.webkit.org/263457@main
  • Loading branch information
philn committed Apr 27, 2023
1 parent 8a95a46 commit 51b2709
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -189,7 +189,7 @@ struct _WebKitVideoEncoderPrivate {

#define webkit_video_encoder_parent_class parent_class
WEBKIT_DEFINE_TYPE_WITH_CODE(WebKitVideoEncoder, webkit_video_encoder, GST_TYPE_BIN,
GST_DEBUG_CATEGORY_INIT(video_encoder_debug, "webkitvideoencoder", 0, "WebKit Video encoder"))
GST_DEBUG_CATEGORY_INIT(video_encoder_debug, "webkitvideoencoderprivate", 0, "WebKit Video Encoder Private"))

enum {
PROP_FORMAT = 1,
Expand Down

0 comments on commit 51b2709

Please sign in to comment.