Last change
on this file since 1063 was 1046, checked in by alloc, 8 years ago |
Daodan: Added Windows MinGW and build batch file
|
File size:
502 bytes
|
Line | |
---|
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
|
---|
Note:
See
TracBrowser
for help on using the repository browser.