mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 06:22:29 +00:00
omx: No need to start the srcpad task in ::start() already
It will be started properly after the caps are set.
This commit is contained in:
parent
4ef40839a2
commit
83b4c1d892
3 changed files with 0 additions and 9 deletions
|
@ -502,9 +502,6 @@ gst_omx_audio_enc_start (GstAudioEncoder * encoder)
|
|||
self->last_upstream_ts = 0;
|
||||
self->eos = FALSE;
|
||||
self->downstream_flow_ret = GST_FLOW_OK;
|
||||
ret =
|
||||
gst_pad_start_task (GST_AUDIO_ENCODER_SRC_PAD (self),
|
||||
(GstTaskFunction) gst_omx_audio_enc_loop, self, NULL);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -790,9 +790,6 @@ gst_omx_video_dec_start (GstVideoDecoder * decoder)
|
|||
self->last_upstream_ts = 0;
|
||||
self->eos = FALSE;
|
||||
self->downstream_flow_ret = GST_FLOW_OK;
|
||||
ret =
|
||||
gst_pad_start_task (GST_VIDEO_DECODER_SRC_PAD (self),
|
||||
(GstTaskFunction) gst_omx_video_dec_loop, self, NULL);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -883,9 +883,6 @@ gst_omx_video_enc_start (GstVideoEncoder * encoder)
|
|||
self->last_upstream_ts = 0;
|
||||
self->eos = FALSE;
|
||||
self->downstream_flow_ret = GST_FLOW_OK;
|
||||
ret =
|
||||
gst_pad_start_task (GST_VIDEO_ENCODER_SRC_PAD (self),
|
||||
(GstTaskFunction) gst_omx_video_enc_loop, self, NULL);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue