mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
gst/qtdemux/qtdemux.c: Combine return values from src pad pushes.
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (gst_qtdemux_perform_seek), (gst_qtdemux_combine_flows), (gst_qtdemux_loop_state_movie), (gst_qtdemux_loop), (gst_qtdemux_chain), (qtdemux_parse_trak): Combine return values from src pad pushes.
This commit is contained in:
parent
38c86d0e24
commit
2d24aef083
1 changed files with 84 additions and 38 deletions
|
@ -145,6 +145,9 @@ struct _QtDemuxStream
|
||||||
guint32 sample_index;
|
guint32 sample_index;
|
||||||
guint64 time_position; /* in gst time */
|
guint64 time_position; /* in gst time */
|
||||||
|
|
||||||
|
/* last GstFlowReturn */
|
||||||
|
GstFlowReturn last_ret;
|
||||||
|
|
||||||
/* quicktime segments */
|
/* quicktime segments */
|
||||||
guint32 n_segments;
|
guint32 n_segments;
|
||||||
QtDemuxSegment *segments;
|
QtDemuxSegment *segments;
|
||||||
|
@ -631,6 +634,8 @@ gst_qtdemux_move_stream (GstQTDemux * qtdemux, QtDemuxStream * str,
|
||||||
* fact, none of the segments could contain a keyframe. We take a
|
* fact, none of the segments could contain a keyframe. We take a
|
||||||
* practical approach: seek to the previous keyframe in the segment,
|
* practical approach: seek to the previous keyframe in the segment,
|
||||||
* if there is none, seek to the beginning of the segment.
|
* if there is none, seek to the beginning of the segment.
|
||||||
|
*
|
||||||
|
* Called with STREAM_LOCK
|
||||||
*/
|
*/
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_qtdemux_perform_seek (GstQTDemux * qtdemux, GstSegment * segment)
|
gst_qtdemux_perform_seek (GstQTDemux * qtdemux, GstSegment * segment)
|
||||||
|
@ -713,6 +718,7 @@ gst_qtdemux_perform_seek (GstQTDemux * qtdemux, GstSegment * segment)
|
||||||
stream->time_position = desired_offset;
|
stream->time_position = desired_offset;
|
||||||
stream->sample_index = 0;
|
stream->sample_index = 0;
|
||||||
stream->segment_index = -1;
|
stream->segment_index = -1;
|
||||||
|
stream->last_ret = GST_FLOW_OK;
|
||||||
}
|
}
|
||||||
segment->last_stop = desired_offset;
|
segment->last_stop = desired_offset;
|
||||||
segment->time = desired_offset;
|
segment->time = desired_offset;
|
||||||
|
@ -1229,6 +1235,40 @@ next_segment:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GstFlowReturn
|
||||||
|
gst_qtdemux_combine_flows (GstQTDemux * demux, QtDemuxStream * stream,
|
||||||
|
GstFlowReturn ret)
|
||||||
|
{
|
||||||
|
gint i;
|
||||||
|
|
||||||
|
/* store the value */
|
||||||
|
stream->last_ret = ret;
|
||||||
|
|
||||||
|
/* if it's success we can return the value right away */
|
||||||
|
if (GST_FLOW_IS_SUCCESS (ret))
|
||||||
|
goto done;
|
||||||
|
|
||||||
|
/* any other error that is not-linked can be returned right
|
||||||
|
* away */
|
||||||
|
if (ret != GST_FLOW_NOT_LINKED)
|
||||||
|
goto done;
|
||||||
|
|
||||||
|
/* only return NOT_LINKED if all other pads returned NOT_LINKED */
|
||||||
|
for (i = 0; i < demux->n_streams; i++) {
|
||||||
|
QtDemuxStream *ostream = demux->streams[i];
|
||||||
|
|
||||||
|
ret = ostream->last_ret;
|
||||||
|
/* some other return value (must be SUCCESS but we can return
|
||||||
|
* other values as well) */
|
||||||
|
if (ret != GST_FLOW_NOT_LINKED)
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
/* if we get here, all other pads were unlinked and we return
|
||||||
|
* NOT_LINKED then */
|
||||||
|
done:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
gst_qtdemux_loop_state_movie (GstQTDemux * qtdemux)
|
gst_qtdemux_loop_state_movie (GstQTDemux * qtdemux)
|
||||||
{
|
{
|
||||||
|
@ -1315,6 +1355,8 @@ gst_qtdemux_loop_state_movie (GstQTDemux * qtdemux)
|
||||||
gst_buffer_set_caps (buf, stream->caps);
|
gst_buffer_set_caps (buf, stream->caps);
|
||||||
|
|
||||||
ret = gst_pad_push (stream->pad, buf);
|
ret = gst_pad_push (stream->pad, buf);
|
||||||
|
/* combine flows */
|
||||||
|
ret = gst_qtdemux_combine_flows (qtdemux, stream, ret);
|
||||||
|
|
||||||
next:
|
next:
|
||||||
gst_qtdemux_advance_sample (qtdemux, stream);
|
gst_qtdemux_advance_sample (qtdemux, stream);
|
||||||
|
@ -1357,22 +1399,35 @@ gst_qtdemux_loop (GstPad * pad)
|
||||||
goto invalid_state;
|
goto invalid_state;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* if all is fine, continue */
|
/* if something went wrong, pause */
|
||||||
if (G_LIKELY (ret == GST_FLOW_OK))
|
if (ret != GST_FLOW_OK)
|
||||||
goto done;
|
goto pause;
|
||||||
|
|
||||||
/* we don't care about unlinked pads */
|
done:
|
||||||
if (ret == GST_FLOW_NOT_LINKED)
|
gst_object_unref (qtdemux);
|
||||||
goto done;
|
return;
|
||||||
|
|
||||||
/* other errors make us stop */
|
/* ERRORS */
|
||||||
GST_LOG_OBJECT (qtdemux, "pausing task, reason %s", gst_flow_get_name (ret));
|
invalid_state:
|
||||||
|
{
|
||||||
|
GST_ELEMENT_ERROR (qtdemux, STREAM, FAILED,
|
||||||
|
(NULL), ("streaming stopped, invalid state"));
|
||||||
|
qtdemux->segment_running = FALSE;
|
||||||
|
gst_pad_pause_task (pad);
|
||||||
|
gst_qtdemux_push_event (qtdemux, gst_event_new_eos ());
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
pause:
|
||||||
|
{
|
||||||
|
const gchar *reason = gst_flow_get_name (ret);
|
||||||
|
|
||||||
|
GST_LOG_OBJECT (qtdemux, "pausing task, reason %s", reason);
|
||||||
|
|
||||||
qtdemux->segment_running = FALSE;
|
qtdemux->segment_running = FALSE;
|
||||||
gst_pad_pause_task (pad);
|
gst_pad_pause_task (pad);
|
||||||
|
|
||||||
/* fatal errors need special actions */
|
/* fatal errors need special actions */
|
||||||
if (GST_FLOW_IS_FATAL (ret)) {
|
if (GST_FLOW_IS_FATAL (ret) || ret == GST_FLOW_NOT_LINKED) {
|
||||||
/* check EOS */
|
/* check EOS */
|
||||||
if (ret == GST_FLOW_UNEXPECTED) {
|
if (ret == GST_FLOW_UNEXPECTED) {
|
||||||
if (qtdemux->segment.flags & GST_SEEK_FLAG_SEGMENT) {
|
if (qtdemux->segment.flags & GST_SEEK_FLAG_SEGMENT) {
|
||||||
|
@ -1392,22 +1447,9 @@ gst_qtdemux_loop (GstPad * pad)
|
||||||
} else {
|
} else {
|
||||||
gst_qtdemux_push_event (qtdemux, gst_event_new_eos ());
|
gst_qtdemux_push_event (qtdemux, gst_event_new_eos ());
|
||||||
GST_ELEMENT_ERROR (qtdemux, STREAM, FAILED,
|
GST_ELEMENT_ERROR (qtdemux, STREAM, FAILED,
|
||||||
(NULL), ("streaming stopped, reason %s", gst_flow_get_name (ret)));
|
(NULL), ("streaming stopped, reason %s", reason));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
done:
|
|
||||||
gst_object_unref (qtdemux);
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* ERRORS */
|
|
||||||
invalid_state:
|
|
||||||
{
|
|
||||||
GST_ELEMENT_ERROR (qtdemux, STREAM, FAILED,
|
|
||||||
(NULL), ("streaming stopped, invalid state"));
|
|
||||||
qtdemux->segment_running = FALSE;
|
|
||||||
gst_pad_pause_task (pad);
|
|
||||||
gst_qtdemux_push_event (qtdemux, gst_event_new_eos ());
|
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1653,6 +1695,9 @@ gst_qtdemux_chain (GstPad * sinkpad, GstBuffer * inbuf)
|
||||||
gst_buffer_set_caps (outbuf, stream->caps);
|
gst_buffer_set_caps (outbuf, stream->caps);
|
||||||
ret = gst_pad_push (stream->pad, outbuf);
|
ret = gst_pad_push (stream->pad, outbuf);
|
||||||
|
|
||||||
|
/* combine flows */
|
||||||
|
ret = gst_qtdemux_combine_flows (demux, stream, ret);
|
||||||
|
|
||||||
stream->sample_index++;
|
stream->sample_index++;
|
||||||
|
|
||||||
/* update current offset and figure out size of next buffer */
|
/* update current offset and figure out size of next buffer */
|
||||||
|
@ -2977,6 +3022,7 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
|
||||||
stream->segment_index = -1;
|
stream->segment_index = -1;
|
||||||
stream->time_position = 0;
|
stream->time_position = 0;
|
||||||
stream->sample_index = 0;
|
stream->sample_index = 0;
|
||||||
|
stream->last_ret = GST_FLOW_OK;
|
||||||
|
|
||||||
stream->timescale = QTDEMUX_GUINT32_GET (mdhd->data + 20);
|
stream->timescale = QTDEMUX_GUINT32_GET (mdhd->data + 20);
|
||||||
stream->duration = QTDEMUX_GUINT32_GET (mdhd->data + 24);
|
stream->duration = QTDEMUX_GUINT32_GET (mdhd->data + 24);
|
||||||
|
|
Loading…
Reference in a new issue