Menu

#43 Wrong translation of KSPROPERTY_BIBLIOGRAPHIC

v1.0 (example)
open
nobody
None
5
2020-06-22
2020-06-22
FactoryX
No

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

Discussion


Log in to post a comment.