Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mpegtype.h « include « w32api « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d8a21821b76fe85da592368c7d9ac090cc3df37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _MPEGTYPE_H
#define _MPEGTYPE_H
#if __GNUC__ >= 3
#pragma GCC system_header
#endif

#include <strmif.h>

#ifdef __cplusplus
extern "C" {
#endif

/*--- DirectShow Reference - DirectShow Structures */
typedef struct tagAM_MPEGSTREAMTYPE {
	DWORD dwStreamID;
	DWORD dwReserved;
	AM_MEDIA_TYPE mt;
	BYTE bFormat[1];
} AM_MPEGSTREAMTYPE;
typedef struct tagAM_MPEGSYSTEMTYPE {
	DWORD dwBitRate;
	DWORD cStreams;
	AM_MPEGSTREAMTYPE Streams[1];
} AM_MPEGSYSTEMTYPE;

#ifdef __cplusplus
}
#endif
#endif