|
Just to clarify this a bit...
An audio file tag format uses 4 bytes to
store a flag to indicate whether text or binary information is stored
in the following tag. The C++ source code
uses these definitions
#define
TAG_FIELD_FLAG_DATA_TYPE_MASK
(6)
#define TAG_FIELD_FLAG_DATA_TYPE_TEXT_UTF8 (0 << 1) #define TAG_FIELD_FLAG_DATA_TYPE_BINARY (1 << 1) #define TAG_FIELD_FLAG_DATA_TYPE_EXTERNAL_INFO (2 << 1) #define TAG_FIELD_FLAG_DATA_TYPE_RESERVED (3 << 1) Am I correct in assuming that a Binary flag will
appear like this in the file (in Hex).
00 00 00 02
Effectively a big endian value of 02.
Is this correct?
Thanks,
Ross.
|
_______________________________________________ Delphi mailing list [email protected] http://ns3.123.co.nz/mailman/listinfo/delphi
