From 04393f437756d10c96557d99d10b304db682ed25 Mon Sep 17 00:00:00 2001 From: Stian Selnes Date: Fri, 29 Jan 2016 11:46:52 +0100 Subject: [PATCH] h263parse: Add debug log for more annexes when plustype --- gst/videoparsers/h263parse.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gst/videoparsers/h263parse.c b/gst/videoparsers/h263parse.c index 98a30e7975..5ed99f712c 100644 --- a/gst/videoparsers/h263parse.c +++ b/gst/videoparsers/h263parse.c @@ -390,6 +390,12 @@ gst_h263_parse_get_params (H263Params * params, GstBuffer * buffer, } /* END H263_OPTION_RPS_MODE */ } + GST_DEBUG (" Unrestricted Motion Vector mode (Annex D) : %s", + (params->features & H263_OPTION_UMV_MODE) ? "on" : "off"); + GST_DEBUG (" Syntax-basex Arithmetic Coding mode (Annex E) : %s", + (params->features & H263_OPTION_SAC_MODE) ? "on" : "off"); + GST_DEBUG (" Advanced Prediction mode (Annex F) : %s", + (params->features & H263_OPTION_AP_MODE) ? "on" : "off"); GST_DEBUG (" Advanced INTRA Coding mode (Annex I) : %s", (params->features & H263_OPTION_AIC_MODE ? "on" : "off")); GST_DEBUG (" Deblocking Filter mode (Annex J) : %s",