repo.or.cz
/
msysgit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Mark msysGit as obsolete
[msysgit.git]
/
mingw
/
include
/
mpegtype.h
blob
9d8a21821b76fe85da592368c7d9ac090cc3df37
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