diff options
author | Stian Selnes <stian@pexip.com> | 2016-01-29 11:46:52 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-11-25 12:12:20 +0000 |
commit | 04393f437756d10c96557d99d10b304db682ed25 (patch) | |
tree | ca70756a3bdb0763073cae587f139232c34a366d /gst | |
parent | c92694e12a438d188e2cb5e19ba751df28043b2e (diff) |
h263parse: Add debug log for more annexes when plustype
Diffstat (limited to 'gst')
-rw-r--r-- | gst/videoparsers/h263parse.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gst/videoparsers/h263parse.c b/gst/videoparsers/h263parse.c index 98a30e797..5ed99f712 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", |