Gst.Element.prototype.message_full
function message_full(type:Gst.MessageType, domain:GLib.Quark, code:Number, text:String, debug:String, file:String, function:String, line:Number):void { // Gjs wrapper for gst_element_message_full() }
Post an error, warning or info message on the bus from inside an element.
type must be of #GST_MESSAGE_ERROR, #GST_MESSAGE_WARNING or #GST_MESSAGE_INFO.
MT safe.
- type
the Gst.MessageType
- domain
the GStreamer GError domain this message belongs to
- code
the GError code belonging to the domain
- text
an allocated text string to be used as a replacement for the default message connected to code, or null
- debug
an allocated debug message to be used as a replacement for the default debugging information, or null
- file
the source code file where the error was generated
- function
the source code function where the error was generated
- line
the source code line where the error was generated