mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-02-14 21:23:42 +00:00
Excessive XDS notices #138
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cfsmp3 on GitHub (Apr 26, 2016).
Originally assigned to: @gshruti95 on GitHub.
This message appears often in files that have XDS
XDS Notice: Aspect ratio info, start line=52, end line=232
XDS Notice: Aspect ratio info, active picture height=180, ratio=1.777778
It should only appear when aspect ratio info is first received or when it changes. The reason is that the block of code that parses this specific XDS packet type doesn't keep track of the previous value (as other parsing block do).
In cc_decoders_xds.c
The case XDS_TYPE_ASPECT_RATIO_INFO:
Should contain the usual 'changed' variable, store received values in the XDS context and compare.