Excessive XDS notices #138

Open
opened 2026-01-29 16:36:14 +00:00 by claunia · 0 comments
Owner

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.

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.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/ccextractor#138