mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
omxvideodec: demote ERROR message
There's no need to warn about failing to negotiate EGL output - that can be perfectly normal.
This commit is contained in:
parent
0af5f07167
commit
7c829886ca
1 changed files with 1 additions and 1 deletions
|
@ -968,7 +968,7 @@ gst_omx_video_dec_reconfigure_output_port (GstOMXVideoDec * self)
|
||||||
/* fallback: try to use EGLImage even if it is not in the caps feature */
|
/* fallback: try to use EGLImage even if it is not in the caps feature */
|
||||||
if (!gst_video_decoder_negotiate (GST_VIDEO_DECODER (self))) {
|
if (!gst_video_decoder_negotiate (GST_VIDEO_DECODER (self))) {
|
||||||
gst_video_codec_state_unref (state);
|
gst_video_codec_state_unref (state);
|
||||||
GST_ERROR_OBJECT (self, "Failed to negotiate RGBA for EGLImage");
|
GST_DEBUG_OBJECT (self, "Failed to negotiate RGBA for EGLImage");
|
||||||
GST_VIDEO_DECODER_STREAM_UNLOCK (self);
|
GST_VIDEO_DECODER_STREAM_UNLOCK (self);
|
||||||
goto no_egl;
|
goto no_egl;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue