00001 #ifndef LAYERDATA_H 00002 #define LAYERDATA_H 00003 00004 typedef struct 00005 { 00006 /* sequence header */ 00007 int intra_quantizer_matrix[64], non_intra_quantizer_matrix[64]; 00008 int chroma_intra_quantizer_matrix[64], chroma_non_intra_quantizer_matrix[64]; 00009 int mpeg2; 00010 int qscale_type, altscan; /* picture coding extension */ 00011 int pict_scal; /* picture spatial scalable extension */ 00012 int scalable_mode; /* sequence scalable extension */ 00013 } mpeg3_layerdata_t; 00014 00015 00016 #endif
1.5.5