mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
omxvideodec: don't use 'self->dec_out_port' anymore and use just 'port'
Fixes some criticals.
This commit is contained in:
parent
9de6308382
commit
9d0763a91d
1 changed files with 4 additions and 4 deletions
|
@ -1936,7 +1936,7 @@ gst_omx_video_dec_loop (GstOMXVideoDec * self)
|
||||||
GST_ERROR_OBJECT (self, "Unsupported color format: %d",
|
GST_ERROR_OBJECT (self, "Unsupported color format: %d",
|
||||||
port_def.format.video.eColorFormat);
|
port_def.format.video.eColorFormat);
|
||||||
if (buf)
|
if (buf)
|
||||||
gst_omx_port_release_buffer (self->dec_out_port, buf);
|
gst_omx_port_release_buffer (port, buf);
|
||||||
GST_VIDEO_DECODER_STREAM_UNLOCK (self);
|
GST_VIDEO_DECODER_STREAM_UNLOCK (self);
|
||||||
goto caps_failed;
|
goto caps_failed;
|
||||||
break;
|
break;
|
||||||
|
@ -1956,7 +1956,7 @@ gst_omx_video_dec_loop (GstOMXVideoDec * self)
|
||||||
|
|
||||||
if (!gst_video_decoder_negotiate (GST_VIDEO_DECODER (self))) {
|
if (!gst_video_decoder_negotiate (GST_VIDEO_DECODER (self))) {
|
||||||
if (buf)
|
if (buf)
|
||||||
gst_omx_port_release_buffer (self->dec_out_port, buf);
|
gst_omx_port_release_buffer (port, buf);
|
||||||
gst_video_codec_state_unref (state);
|
gst_video_codec_state_unref (state);
|
||||||
goto caps_failed;
|
goto caps_failed;
|
||||||
}
|
}
|
||||||
|
@ -1978,9 +1978,9 @@ gst_omx_video_dec_loop (GstOMXVideoDec * self)
|
||||||
* lock and the videocodec stream lock, if ::reset()
|
* lock and the videocodec stream lock, if ::reset()
|
||||||
* is called at the wrong time
|
* is called at the wrong time
|
||||||
*/
|
*/
|
||||||
if (gst_omx_port_is_flushing (self->dec_out_port)) {
|
if (gst_omx_port_is_flushing (port)) {
|
||||||
GST_DEBUG_OBJECT (self, "Flushing");
|
GST_DEBUG_OBJECT (self, "Flushing");
|
||||||
gst_omx_port_release_buffer (self->dec_out_port, buf);
|
gst_omx_port_release_buffer (port, buf);
|
||||||
goto flushing;
|
goto flushing;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue