AVIReader.st
changeset 540 555743a120c0
parent 526 263d3775d846
child 553 9b4fb2624c4c
equal deleted inserted replaced
539:2177c51c742a 540:555743a120c0
     1 'From Smalltalk/X, Version:3.1.5 on 11-apr-1997 at 6:49:43 pm'                  !
     1 "
       
     2  COPYRIGHT (c) 1997 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     2 
    12 
     3 RIFFReader subclass:#AVIReader
    13 RIFFReader subclass:#AVIReader
     4 	instanceVariableNames:'frames nframes frameBuffer frameBufferSize imageBuffer redPalette
    14 	instanceVariableNames:'frames nframes frameBuffer frameBufferSize imageBuffer redPalette
     5 		greenPalette bluePalette flags frameDelay streamType depth
    15 		greenPalette bluePalette flags frameDelay streamType depth
     6 		compression colorTable numColors deltaMethod'
    16 		compression colorTable numColors deltaMethod'
    25 "
    35 "
    26 !
    36 !
    27 
    37 
    28 documentation
    38 documentation
    29 "
    39 "
       
    40     This is not yet completed.
       
    41 
    30     Read frames from a AVI file.
    42     Read frames from a AVI file.
    31     This is not yet completed.
    43 
    32 
    44     this is a very first attempt in reading AVI files;
    33     this is a very first attempt in reading FLI files;
       
    34     its very experimental and may change.
    45     its very experimental and may change.
    35     (will introduce a new class hierarchy based upon
    46     (will introduce a new class hierarchy based upon
    36      MovieReader ...).
    47      MovieReader ...).
    37 
    48 
    38     When used like an imageReader, #fromFile: will return
    49     When used like an imageReader, #fromFile: will return
    39     the very first frame.
    50     the very first frame.
    40 
    51 
    41     Warning: right now, the complete movie is read and huge
    52     Warning: right now, the complete movie is read and huge
    42     amounts of memoru are allocated. The interface will be changed
    53     amounts of memory are allocated. The interface will be changed
    43     to allow stream operation ...
    54     to allow stream operation ...
    44 
    55 
    45     [author:]
    56     [author:]
    46         Claus Gittinger
    57         Claus Gittinger
    47 
    58 
  1448 ! !
  1459 ! !
  1449 
  1460 
  1450 !AVIReader class methodsFor:'documentation'!
  1461 !AVIReader class methodsFor:'documentation'!
  1451 
  1462 
  1452 version
  1463 version
  1453     ^ '$Header: /cvs/stx/stx/libview2/AVIReader.st,v 1.2 1997-04-14 13:09:07 cg Exp $'
  1464     ^ '$Header: /cvs/stx/stx/libview2/AVIReader.st,v 1.3 1997-04-17 01:31:06 cg Exp $'
  1454 ! !
  1465 ! !
  1455 AVIReader initialize!
  1466 AVIReader initialize!