OSDN Git Service

9d8a21821b76fe85da592368c7d9ac090cc3df37
[mingw/mingw-org-wsl.git] / w32api / include / mpegtype.h
1 #ifndef _MPEGTYPE_H
2 #define _MPEGTYPE_H
3 #if __GNUC__ >= 3
4 #pragma GCC system_header
5 #endif
6
7 #include <strmif.h>
8
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12
13 /*--- DirectShow Reference - DirectShow Structures */
14 typedef struct tagAM_MPEGSTREAMTYPE {
15         DWORD dwStreamID;
16         DWORD dwReserved;
17         AM_MEDIA_TYPE mt;
18         BYTE bFormat[1];
19 } AM_MPEGSTREAMTYPE;
20 typedef struct tagAM_MPEGSYSTEMTYPE {
21         DWORD dwBitRate;
22         DWORD cStreams;
23         AM_MPEGSTREAMTYPE Streams[1];
24 } AM_MPEGSYSTEMTYPE;
25
26 #ifdef __cplusplus
27 }
28 #endif
29 #endif