GNOME Bugzilla – Bug 766203
videoencoder/decoder: Wrong variable names used in GST_IS_*CODER_CLASS macros
Last modified: 2016-05-11 01:35:15 UTC
In file gstreamer/gst-plugins-base/gst-libs/gst/video/gstvideoencoder.h and gstreamer/gst-plugins-base/gst-libs/gst/video/gstvideodecoder.h. The macro: #define GST_IS_VIDEO_DECODER_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEO_DECODER)) and #define GST_IS_VIDEO_ENCODER_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEO_ENCODER)) Should be "klass", not "obj", though not used right now. :)
commit 5be3c5f6b29daf2c72c0d809db5c5fbd011eb87b Author: Sebastian Dröge <sebastian@centricular.com> Date: Tue May 10 10:01:12 2016 +0300 videodecoder/encoder: Correct GST_IS_*CODER_CLASS macros They are currently not used, but would result in a compiler error due to wrong variable name usage. https://bugzilla.gnome.org/show_bug.cgi?id=766203