; $Id: mpeg_close.pro,v 1.4 2001/01/15 22:28:08 scottm Exp $ ; ; Copyright (c) 1998-2001, Research Systems, Inc. All rights reserved. ; Unauthorized reproduction prohibited. ;+ ; NAME: ; MPEG_CLOSE ; ; PURPOSE: ; Frees all information associated with the given MPEG sequence. ; The given MPEG identifier will no longer be valid after this call. ; ; CATEGORY: ; Input/Output ; ; CALLING SEQUENCE: ; MPEG_CLOSE, mpegID ; ; INPUTS: ; mpegID: The unique identifier of the MPEG sequence (as returned ; from MPEG_OPEN) to be stored. ; ; EXAMPLE: ; MPEG_CLOSE, mpegID ; ; MODIFICATION HISTORY: ; Written by: Scott J. Lasica, December, 1997 ;- pro MPEG_CLOSE, mpegID if (not OBJ_ISA(mpegID, 'IDLgrMPEG')) then $ MESSAGE,'Argument must be an IDLgrMPEG object reference.' OBJ_DESTROY, mpegID end