Created attachment 58128 [details] [review] Patch that fixes MediaRendition parsing The parsing code for MediaRendition contains an logic error which causes valid media rendition objects to be marked as invalid ones. The PDF references says in Table 9.6: "P dictionary (Required if C is not present, otherwise optional)." Or in other words: if (!C && !P) -> error but the current implementation does: if (!P && C) -> error The attached patch fixes this.
Comment on attachment 58128 [details] [review] Patch that fixes MediaRendition parsing Review of attachment 58128 [details] [review]: ----------------------------------------------------------------- Right, good catch! Thanks.
Pushed
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.