Doxygen Source Code Documentation
specifics.h
Go to the documentation of this file.00001 /*===========================================================================* 00002 * specifics.h * 00003 * * 00004 * reading the specifics file * 00005 * * 00006 *===========================================================================*/ 00007 00008 /* 00009 * Copyright (c) 1995 The Regents of the University of California. 00010 * All rights reserved. 00011 * 00012 * Permission to use, copy, modify, and distribute this software and its 00013 * documentation for any purpose, without fee, and without written agreement is 00014 * hereby granted, provided that the above copyright notice and the following 00015 * two paragraphs appear in all copies of this software. 00016 * 00017 * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR 00018 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT 00019 * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF 00020 * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00021 * 00022 * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, 00023 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 00024 * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS 00025 * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO 00026 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 00027 */ 00028 00029 /* 00030 * $Header: /misc/elrond0/share/cvs/AFNI/src/mpeg_encodedir/headers/specifics.h,v 1.4 2004/04/02 15:12:42 rwcox Exp $ 00031 * $Log: specifics.h,v $ 00032 * Revision 1.4 2004/04/02 15:12:42 rwcox 00033 * Cput 00034 * 00035 * Revision 1.3 2003/12/23 13:50:09 rwcox 00036 * Cput 00037 * 00038 * Revision 1.2 2003/12/03 14:46:15 rwcox 00039 * Cput 00040 * 00041 * Revision 1.1 2001/12/17 18:25:45 rwcox 00042 * Cadd 00043 * 00044 * Revision 1.4 1995/04/14 23:11:39 smoot 00045 * made types smalled 00046 * 00047 * Revision 1.3 1995/01/19 23:55:23 eyhung 00048 * Changed copyrights 00049 * 00050 * Revision 1.2 1995/01/17 21:53:32 smoot 00051 * killed prototypes 00052 * 00053 * Revision 1.1 1994/11/15 00:40:35 smoot 00054 * Initial revision 00055 * 00056 * 00057 */ 00058 00059 00060 /*==============* 00061 * HEADER FILES * 00062 *==============*/ 00063 00064 #include "ansi.h" 00065 00066 00067 /*===========* 00068 * TYPES * 00069 *===========*/ 00070 00071 typedef struct bs_def { 00072 int num; 00073 boolean relative; 00074 char qscale; 00075 BlockMV *mv; /* defined in mtypes.h */ 00076 struct bs_def *next; 00077 } Block_Specifics; 00078 00079 typedef struct detail_def { 00080 int num; 00081 char qscale; 00082 struct detail_def *next; 00083 } Slice_Specifics; 00084 00085 typedef struct fsl_def { 00086 int framenum; 00087 int frametype; 00088 char qscale; 00089 Slice_Specifics *slc; 00090 Block_Specifics *bs; 00091 struct fsl_def *next; 00092 } FrameSpecList; 00093 00094 /*===========* 00095 * CONSTANTS * 00096 *===========*/ 00097 00098 00099 /*==================* 00100 * GLOBAL VARIABLES * 00101 *==================*/ 00102