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

bdatypes.h « include « w32api « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5456ff68b46ce13bf263f235ea5d11bd758ee08f (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
30
31
32
#ifndef _BDATYPES_H
#define _BDATYPES_H
#if __GNUC__ >= 3
#pragma GCC system_header
#endif

#ifdef __cplusplus
extern "C" {
#endif

/*--- DirectShow Reference - DirectShow Enumerated Types */
typedef enum {
	MEDIA_TRANSPORT_PACKET,
	MEDIA_ELEMENTARY_STREAM,
	MEDIA_MPEG2_PSI,
	MEDIA_TRANSPORT_PAYLOAD
} MEDIA_SAMPLE_CONTENT;
/*--- DirectShow Reference - DirectShow Structures */
typedef struct {
	DWORD dwOffset
	DWORD dwPacketLength
	DWORD dwStride
} MPEG2_TRANSPORT_STRIDE;
typedef struct {
	ULONG ulPID;
	MEDIA_SAMPLE_CONTENT MediaSampleContent ;
} PID_MAP;

#ifdef __cplusplus
}
#endif
#endif