home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 9 / CD_ASCQ_09_1193.iso / news / 4441 / mpegcode / src / headers / readfram.h < prev    next >
C/C++ Source or Header  |  1993-09-27  |  2KB  |  62 lines

  1. /*===========================================================================*
  2.  * readframe.h                                     *
  3.  *                                         *
  4.  *    stuff dealing with reading frames                     *
  5.  *                                         *
  6.  *===========================================================================*/
  7.  
  8. /*
  9.  * Copyright (c) 1993 The Regents of the University of California.
  10.  * All rights reserved.
  11.  *
  12.  * Permission to use, copy, modify, and distribute this software and its
  13.  * documentation for any purpose, without fee, and without written agreement is
  14.  * hereby granted, provided that the above copyright notice and the following
  15.  * two paragraphs appear in all copies of this software.
  16.  *
  17.  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  18.  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  19.  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  20.  * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  21.  *
  22.  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  23.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  24.  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  25.  * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  26.  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  27.  */
  28.  
  29. /*  
  30.  *  $Header: /n/picasso/users/keving/encode/src/headers/RCS/readframe.h,v 1.2 1993/07/22 22:24:23 keving Exp keving $
  31.  *  $Log: readframe.h,v $
  32.  * Revision 1.2  1993/07/22  22:24:23  keving
  33.  * nothing
  34.  *
  35.  * Revision 1.1  1993/07/09  00:17:23  keving
  36.  * nothing
  37.  *
  38.  */
  39.  
  40.  
  41. /*===========*
  42.  * CONSTANTS *
  43.  *===========*/
  44.  
  45. #define    PPM_FILE_TYPE    0
  46. #define YUV_FILE_TYPE    2
  47. #define ANY_FILE_TYPE    3
  48. #define BASE_FILE_TYPE    4
  49. #define PNM_FILE_TYPE    5
  50.  
  51.  
  52. /*===============================*
  53.  * EXTERNAL PROCEDURE prototypes *
  54.  *===============================*/
  55.  
  56. extern void    ReadFrame _ANSI_ARGS_((MpegFrame *frame, char *fileName,
  57.                        char *conversion, boolean addPath));
  58. extern void    SetFileType _ANSI_ARGS_((void));
  59. extern void    SetFileFormat _ANSI_ARGS_((char *format));
  60. extern FILE    *ReadIOConvert _ANSI_ARGS_((char *fileName));
  61.  
  62.