File: layerdata.h

package info (click to toggle)
libmpeg3 1.8.dfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,028 kB
  • sloc: ansic: 18,561; asm: 761; makefile: 263; sh: 26
file content (16 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef LAYERDATA_H
#define LAYERDATA_H

typedef struct 
{
/* sequence header */
	int intra_quantizer_matrix[64], non_intra_quantizer_matrix[64];
	int chroma_intra_quantizer_matrix[64], chroma_non_intra_quantizer_matrix[64];
	int mpeg2;
	int qscale_type, altscan;      /* picture coding extension */
	int pict_scal;                /* picture spatial scalable extension */
	int scalable_mode;            /* sequence scalable extension */
} mpeg3_layerdata_t;


#endif