So if you could
cd /
find -name "*pdf" -exec grep -H JPXDecode {} \;
or as said in the comments
locate -0 .pdf | xargs -0 -n 1 grep -H JPXDecode
and send me (aacid@kde.org) a link to the pdf or the file pdf itself of all the files that match.
A blog about random things and sometimes about my work translating and developing KDE and anything
cd /
find -name "*pdf" -exec grep -H JPXDecode {} \;
locate -0 .pdf | xargs -0 -n 1 grep -H JPXDecode