Changeset 572 for CoolStreaming/BitStream.pas
- Timestamp:
- Jun 25, 2024, 1:37:11 AM (4 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
CoolStreaming/BitStream.pas
r571 r572 1 unit UBitStream;1 unit BitStream; 2 2 3 3 // Date: 2010-08-17 4 4 5 {$mode delphi}6 7 5 interface 8 6 9 7 uses 10 Classes, SysUtils, RtlConsts, Math, UMemory;8 Classes, SysUtils, RtlConsts, Math, Memory; 11 9 12 10 type … … 343 341 destructor TMemoryBitStream.Destroy; 344 342 begin 345 F Memory.Free;346 inherited Destroy;343 FreeAndNil(FMemory); 344 inherited; 347 345 end; 348 346
Note:
See TracChangeset
for help on using the changeset viewer.