summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2017-03-14 02:34:36 +1100
committerJan Schmidt <thaytan@noraisin.net>2017-03-14 02:34:36 +1100
commit7c829886ca779ef45e1754fcaba2d563ace620fb (patch)
treed12c0e3d705239e8551070422c0aa68beeaeb1c3
parent0af5f071671998b429ffc65f7412b1217aeec99c (diff)
downloadgst-omx-7c829886ca779ef45e1754fcaba2d563ace620fb.tar.gz
omxvideodec: demote ERROR message
There's no need to warn about failing to negotiate EGL output - that can be perfectly normal.
-rw-r--r--omx/gstomxvideodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/omx/gstomxvideodec.c b/omx/gstomxvideodec.c
index 0dc4871..2fecb8b 100644
--- a/omx/gstomxvideodec.c
+++ b/omx/gstomxvideodec.c
@@ -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 */
if (!gst_video_decoder_negotiate (GST_VIDEO_DECODER (self))) {
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);
goto no_egl;
}