hdsdump.F4FOldMethod.ReadInt64(ref byte[], long)

Here are the examples of the csharp api class hdsdump.F4FOldMethod.ReadInt64(ref byte[], long) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

3 Examples 7

1. Example

Project: hdsdump
Source File: F4FOldMethod.cs
private static void ReadBoxHeader(ref byte[] bytesData, ref long pos, ref string boxType, ref long boxSize) {
            boxSize = ReadInt32(ref bytesData, pos);
            boxType = ReadStringBytes(ref bytesData, pos + 4, 4);
            if (boxSize == 1) {
                boxSize = ReadInt64(ref bytesData, pos + 8) - 16;
                pos += 16;
            } else {
                boxSize -= 8;
                pos += 8;
            }
        }

2. Example

Project: hdsdump
Source File: F4FOldMethod.cs
private void ParseAfrtBox(ref byte[] afrt, long pos) {
            this.fragTable.Clear();
#pragma w/n ..... /n //View Source file for more details /n }

3. Example

Project: hdsdump
Source File: F4FOldMethod.cs
private void ParseBootstrapBox(ref byte[] bootstrapInfo, long pos) {
#pragma warning disable 0219
  /n ..... /n //View Source file for more details /n }