mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
h263parse: Add debug log for more annexes when plustype
This commit is contained in:
parent
c92694e12a
commit
04393f4377
1 changed files with 6 additions and 0 deletions
|
@ -390,6 +390,12 @@ gst_h263_parse_get_params (H263Params * params, GstBuffer * buffer,
|
||||||
} /* END H263_OPTION_RPS_MODE */
|
} /* 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",
|
GST_DEBUG (" Advanced INTRA Coding mode (Annex I) : %s",
|
||||||
(params->features & H263_OPTION_AIC_MODE ? "on" : "off"));
|
(params->features & H263_OPTION_AIC_MODE ? "on" : "off"));
|
||||||
GST_DEBUG (" Deblocking Filter mode (Annex J) : %s",
|
GST_DEBUG (" Deblocking Filter mode (Annex J) : %s",
|
||||||
|
|
Loading…
Reference in a new issue