2008-06-20 10:32:34 +00:00
|
|
|
Frame step
|
|
|
|
----------
|
|
|
|
|
|
|
|
This document outlines the details of the frame stepping functionality in
|
|
|
|
GStreamer.
|
|
|
|
|
|
|
|
The stepping functionality operates on the current playback segment, position
|
|
|
|
and rate as it was configured with a regular seek event. In contrast to the seek
|
|
|
|
event, it operates very closely to the sink and thus has a very low latency and
|
|
|
|
is not slowed down by queues and does not actually perform any seeking logic.
|
|
|
|
For this reason we want to include a new API instead of reusing the seek API.
|
|
|
|
|
|
|
|
The following requirements are needed:
|
|
|
|
|
|
|
|
- The ability to walk forwards and backwards in the stream.
|
|
|
|
- Arbitrary increments in any supported format (time, frames, bytes ...)
|
|
|
|
- High speed, minimal overhead. This mechanism is not more expensive than
|
2009-02-27 11:34:29 +00:00
|
|
|
simple playback.
|
2008-06-29 15:00:26 +00:00
|
|
|
- switching between forwards and backwards stepping should be fast.
|
2008-06-20 10:32:34 +00:00
|
|
|
- Maintain synchronisation between streams.
|
|
|
|
- Get feedback of the amount of skipped data.
|
|
|
|
- Ability to play a certain amount of data at an arbitrary speed.
|
|
|
|
|
|
|
|
We want a system where we can step frames in PAUSED as well as play short
|
|
|
|
segments of data in PLAYING.
|
|
|
|
|
|
|
|
|
|
|
|
Use Cases
|
2010-11-01 13:32:43 +00:00
|
|
|
~~~~~~~~~
|
2008-06-20 10:32:34 +00:00
|
|
|
|
|
|
|
* frame stepping in video only pipeline in PAUSED
|
|
|
|
|
|
|
|
.-----. .-------. .------. .-------.
|
|
|
|
| src | | demux | .-----. | vdec | | vsink |
|
|
|
|
| src->sink src1->|queue|->sink src->sink |
|
|
|
|
'-----' '-------' '-----' '------' '-------'
|
|
|
|
|
|
|
|
- app sets the pipeline to PAUSED to block on the preroll picture
|
|
|
|
- app seeks to required position in the stream. This can be done with a
|
|
|
|
positive or negative rate depending on the required frame stepping
|
|
|
|
direction.
|
|
|
|
- app steps frames (in GST_FORMAT_DEFAULT or GST_FORMAT_BUFFER). The
|
|
|
|
pipeline loses its PAUSED state until the required number of frames have
|
|
|
|
been skipped, it then prerolls again. This skipping is purely done in
|
|
|
|
the sink.
|
|
|
|
- sink posts STEP_DONE with amount of frames stepped and corresponding time
|
|
|
|
interval.
|
|
|
|
|
|
|
|
* frame stepping in audio/video pipeline in PAUSED
|
|
|
|
|
|
|
|
.-----. .-------. .------. .-------.
|
|
|
|
| src | | demux | .-----. | vdec | | vsink |
|
|
|
|
| src->sink src1->|queue|->sink src->sink |
|
|
|
|
'-----' | | '-----' '------' '-------'
|
|
|
|
| | .------. .-------.
|
|
|
|
| | .-----. | adec | | asink |
|
|
|
|
| src2->|queue|->sink src->sink |
|
|
|
|
'-------' '-----' '------' '-------'
|
|
|
|
|
|
|
|
|
|
|
|
- app sets the pipeline to PAUSED to block on the preroll picture
|
|
|
|
- app seeks to required position in the stream. This can be done with a
|
|
|
|
positive or negative rate depending on the required frame stepping
|
|
|
|
direction.
|
|
|
|
- app steps frames (in GST_FORMAT_DEFAULT or GST_FORMAT_BUFFER) or an amount
|
|
|
|
of time on the video sink. The pipeline loses its PAUSED state until the
|
|
|
|
required number of frames have been skipped, it then prerolls again.
|
|
|
|
This skipping is purely done in the sink.
|
|
|
|
- sink posts STEP_DONE with amount of frames stepped and corresponding time
|
|
|
|
interval.
|
|
|
|
- the app skips the same amount of time on the audiosink to align the
|
|
|
|
streams again. When huge amount of video frames are skipped, there needs
|
|
|
|
to be enough queueing in the pipeline to compensate for the accumulated
|
|
|
|
audio.
|
|
|
|
|
|
|
|
* frame stepping in audio/video pipeline in PLAYING
|
|
|
|
|
|
|
|
- app sets the pipeline to PAUSED to block on the preroll picture
|
|
|
|
- app seeks to required position in the stream. This can be done with a
|
|
|
|
positive or negative rate depending on the required frame stepping
|
|
|
|
direction.
|
|
|
|
- app configures frames steps (in GST_FORMAT_DEFAULT or GST_FORMAT_BUFFER) or
|
|
|
|
an amount of time on the sink. The step event has a flag indicating live
|
|
|
|
stepping so that the stepping will only happens in PLAYING.
|
|
|
|
- app sets pipeline to PLAYING. The pipeline continues PLAYING until it
|
|
|
|
consumed the amount of time.
|
|
|
|
- sink posts STEP_DONE with amount of frames stepped and corresponding time
|
|
|
|
interval. The sink will then wait for another step event. Since the
|
|
|
|
STEP_DONE message was emited by the sink when it handed off the buffer to
|
|
|
|
the device, there is usually sufficient time to queue a new STEP event so
|
|
|
|
that one can seamlessly continue stepping.
|
|
|
|
|
|
|
|
|
|
|
|
events
|
2010-11-01 13:32:43 +00:00
|
|
|
~~~~~~
|
2008-06-20 10:32:34 +00:00
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
A new GST_EVENT_STEP event is introduced to start the step operation.
|
|
|
|
The step event is created with the following fields in the structure:
|
2008-06-20 10:32:34 +00:00
|
|
|
|
|
|
|
"format", GST_TYPE_FORMAT
|
|
|
|
The format of the step units
|
|
|
|
|
|
|
|
"amount", G_TYPE_UINT64
|
|
|
|
The amount of units to step. -1 resumes normal non-stepping behaviour to
|
|
|
|
the end of the segment.
|
|
|
|
|
|
|
|
"rate", G_TYPE_DOUBLE
|
2009-02-27 11:34:29 +00:00
|
|
|
The rate at which the frames should be stepped in PLAYING mode. 1.0 is
|
|
|
|
the normal playback speed and direction of the segment, 2.0
|
|
|
|
is double speed. A speed of 0.0 is not allowed. When performing a
|
|
|
|
flushing step, the speed is not relevant. Note that we don't allow negative
|
|
|
|
rates here, use a seek with a negative rate first to reverse the playback
|
|
|
|
direction.
|
|
|
|
|
2008-06-20 10:32:34 +00:00
|
|
|
"flush", G_TYPE_BOOLEAN
|
2011-09-07 11:14:38 +00:00
|
|
|
when flushing is TRUE, the step is performed immediately:
|
2008-06-20 10:32:34 +00:00
|
|
|
|
|
|
|
- In the PAUSED state the pipeline loses the PAUSED state, the requested
|
2009-02-27 11:34:29 +00:00
|
|
|
amount of data is skipped and the pipeline prerolls again when a
|
|
|
|
non-intermediate step completes.
|
|
|
|
When the pipeline was stepping while the event is sent, the current step
|
2008-06-20 10:32:34 +00:00
|
|
|
operation is updated with the new amount and format. The sink will do a
|
|
|
|
best effort to comply with the new amount.
|
2009-06-08 15:39:47 +00:00
|
|
|
- In the PLAYING state, the pipeline loses the PLAYING state, the
|
|
|
|
requested amount of data is skipped (not rendered) from the previous STEP
|
|
|
|
request or from the position of the last PAUSED if no previous STEP
|
|
|
|
operation was performed. The pipeline goes back to the PLAYING state
|
|
|
|
when a non-intermediate step completes.
|
2008-06-20 10:32:34 +00:00
|
|
|
|
|
|
|
When flushing is FALSE, the step will be performed later.
|
|
|
|
|
|
|
|
- In the PAUSED state the step will be done when going to PLAYING. Any
|
|
|
|
previous step operation will be overridden with the new STEP event.
|
|
|
|
- In the PLAYING state the step operation will be performed after the
|
|
|
|
current step operation completes. If there was no previous step
|
|
|
|
operation, the step operation will be performed from the position of the
|
2009-06-01 10:19:52 +00:00
|
|
|
last PAUSED state.
|
|
|
|
|
|
|
|
"intermediate", G_TYPE_BOOLEAN
|
|
|
|
Signal that this step operation is an intermediate step, part of a series
|
|
|
|
of step operations. It is mostly interesting for stepping in the PAUSED state
|
|
|
|
because the sink will only perform a preroll after a non-intermediate step
|
2011-09-07 11:14:38 +00:00
|
|
|
operation completes. Intermediate steps are useful to flush out data from
|
2009-06-01 10:19:52 +00:00
|
|
|
other sinks in order to not cause excessive queueing. In the PLAYING state
|
|
|
|
the intermediate flag has no visual effect. In all states, the intermediate
|
|
|
|
flag is passed to the corresponding GST_MESSAGE_STEP_DONE.
|
2009-02-27 11:34:29 +00:00
|
|
|
|
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
The application will create a STEP event to start or stop the stepping
|
|
|
|
operation. Both stepping in PAUSED and PLAYING can be performed by means of
|
|
|
|
the flush flag.
|
2008-06-20 10:32:34 +00:00
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
The event is usually sent to the pipeline, which will typically distribute the
|
|
|
|
event to all of its sinks. For some use cases, like frame stepping on video
|
|
|
|
frames only, the event should only be sent to the video sink and upon reception
|
|
|
|
of the STEP_DONE message, one can step the other sinks to align the streams
|
|
|
|
again.
|
2008-06-20 10:32:34 +00:00
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
For large stepping amounts, there needs to be enough queueing in front of all
|
|
|
|
the sinks. If large steps need to be performed, they can be split up into
|
|
|
|
smaller step operations using the "intermediate" flag on the step.
|
2009-02-27 11:34:29 +00:00
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
Since the step event does not update the base_time of any of the elements, the
|
|
|
|
sinks should keep track of the amount of stepped data in order to remain
|
|
|
|
synchronized against the clock.
|
2008-06-20 10:32:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
messages
|
2010-11-01 13:32:43 +00:00
|
|
|
~~~~~~~~
|
2008-06-20 10:32:34 +00:00
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
A GST_MESSAGE_STEP_START is created. It contains the following fields.
|
2009-06-12 11:18:21 +00:00
|
|
|
|
|
|
|
"active"
|
|
|
|
If the step was queued or activated.
|
|
|
|
|
|
|
|
"format", GST_TYPE_FORMAT
|
|
|
|
The format of the step units that queued/activated.
|
|
|
|
|
|
|
|
"amount", G_TYPE_UINT64
|
|
|
|
The amount of units that were queued/activated.
|
|
|
|
|
|
|
|
"rate", G_TYPE_DOUBLE
|
|
|
|
The rate and direction at which the frames were queued/activated.
|
|
|
|
|
|
|
|
"flush", G_TYPE_BOOLEAN
|
|
|
|
If the queued/activated frames will be flushed.
|
|
|
|
|
|
|
|
"intermediate", G_TYPE_BOOLEAN
|
|
|
|
If this is an intermediate step operation that queued/activated.
|
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
The STEP_START message is emited 2 times:
|
2009-06-12 11:18:21 +00:00
|
|
|
|
|
|
|
* first when an element received the STEP event and queued it. The "active"
|
|
|
|
field will be FALSE in this case.
|
|
|
|
|
|
|
|
* second when the step operation started in the streaming thread. The "active"
|
|
|
|
field is TRUE in this case. After this message is emited, the application
|
|
|
|
can queue a new step operation.
|
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
The purpose of this message is to find out how many elements participate in the
|
|
|
|
step operation and to queue new step operations at the earliest possible
|
|
|
|
moment.
|
2009-06-12 11:18:21 +00:00
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
A new GST_MESSAGE_STEP_DONE message is created. It contains the following
|
|
|
|
fields:
|
2008-06-20 10:32:34 +00:00
|
|
|
|
|
|
|
"format", GST_TYPE_FORMAT
|
|
|
|
The format of the step units that completed.
|
|
|
|
|
|
|
|
"amount", G_TYPE_UINT64
|
|
|
|
The amount of units that were stepped.
|
|
|
|
|
|
|
|
"rate", G_TYPE_DOUBLE
|
|
|
|
The rate and direction at which the frames were stepped.
|
|
|
|
|
2009-05-18 13:48:20 +00:00
|
|
|
"flush", G_TYPE_BOOLEAN
|
|
|
|
If the stepped frames were flushed.
|
2008-06-20 10:32:34 +00:00
|
|
|
|
2009-06-01 10:19:52 +00:00
|
|
|
"intermediate", G_TYPE_BOOLEAN
|
|
|
|
If this is an intermediate step operation that completed.
|
|
|
|
|
2009-05-18 13:48:20 +00:00
|
|
|
"duration", G_TYPE_UINT64
|
|
|
|
The total duration of the stepped units in GST_FORMAT_TIME.
|
|
|
|
|
2009-06-12 11:18:21 +00:00
|
|
|
"eos", G_TYPE_BOOLEAN
|
|
|
|
The step ended because of EOS.
|
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
The message is emited by the element that performs the step operation. The
|
|
|
|
purpose is to return the duration in GST_FORMAT_TIME of the stepped media. This
|
|
|
|
especially interesting to align other stream in case of stepping frames on the
|
|
|
|
video sink element.
|
2008-06-20 10:32:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
Direction switch
|
2010-11-01 13:32:43 +00:00
|
|
|
~~~~~~~~~~~~~~~~
|
2008-06-20 10:32:34 +00:00
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
When quickly switching between a forwards and a backwards step of, for example,
|
|
|
|
one video frame, we need either:
|
2008-06-20 10:32:34 +00:00
|
|
|
|
|
|
|
a) issue a new seek to change the direction from the current position.
|
|
|
|
b) cache a certain number of stepped frames and walk the cache.
|
|
|
|
|
2010-11-01 13:32:43 +00:00
|
|
|
option a) might be very slow.
|
|
|
|
For option b) we would ideally like to offload this caching functionality to a
|
|
|
|
separate element, which means that we need to forward the STEP event upstream.
|
|
|
|
It's unclear how this could work in a generic way. What is a demuxer supposed
|
|
|
|
to do when it received a step event? a flushing seek to what stream position?
|
2008-06-20 10:32:34 +00:00
|
|
|
|