Gst.Message.new_step_done
function new_step_done(src:Gst.Object, format:Gst.Format, amount:Number, rate:Number, flush:Boolean, intermediate:Boolean, duration:Number, eos:Boolean):Gst.Message { // Gjs wrapper for gst_message_new_step_done() }
This message is posted by elements when they complete a part, when intermediate set to TRUE, or a complete step operation.
duration will contain the amount of time (in GST_FORMAT_TIME) of the stepped amount of media in format format.
- src
The object originating the message.
- format
the format of amount
- amount
the amount of stepped data
- rate
the rate of the stepped amount
- flush
is this an flushing step
- intermediate
is this an intermediate step
- duration
the duration of the data
- eos
the step caused EOS
- Returns
the new step_done message. MT safe.