From 35ffd018e29afea764e8ec3e7b17df129a999a4c Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 27 Aug 2019 15:47:28 +0530 Subject: [PATCH] omxvideoenc: log the full input format Make it easier to debug dynamic format changes. --- omx/gstomxvideoenc.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/omx/gstomxvideoenc.c b/omx/gstomxvideoenc.c index 8a45177..f266596 100644 --- a/omx/gstomxvideoenc.c +++ b/omx/gstomxvideoenc.c @@ -2223,12 +2223,14 @@ gst_omx_video_enc_set_format (GstVideoEncoder * encoder, OMX_PARAM_PORTDEFINITIONTYPE port_def; GstVideoInfo *info = &state->info; GList *negotiation_map = NULL, *l; + GstCaps *caps; self = GST_OMX_VIDEO_ENC (encoder); klass = GST_OMX_VIDEO_ENC_GET_CLASS (encoder); - GST_DEBUG_OBJECT (self, "Setting new format %s", - gst_video_format_to_string (info->finfo->format)); + caps = gst_video_info_to_caps (info); + GST_DEBUG_OBJECT (self, "Setting new input format: %" GST_PTR_FORMAT, caps); + gst_caps_unref (caps); gst_omx_port_get_port_definition (self->enc_in_port, &port_def); -- 2.7.4