Wrong translation of KSPROPERTY_BIBLIOGRAPHIC (KsMedia.h).
This enum has multi-character constants and should be treated just the same way, as for example FOURCC constants.
A multi-character constant is always of type Integer (Int) and always contains 4 charakters (32 bit).
For example:
C++
KSPROPERTY_BIBLIOGRAPHIC_LEADER = 'RDL '
Delphi/ FPC
KSPROPERTY_BIBLIOGRAPHIC_LEADER = ord('R') or (ord('D') shl 8) or (ord('L') shl 16) or (ord(' ') shl 24) // $52444C20