Skip to content

Commit

Permalink
added missing bdatypes.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Pisarevsky committed Jun 23, 2011
1 parent b1bf1de commit d4fbb2c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions 3rdparty/include/dshow/bdatypes.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit d4fbb2c

Please sign in to comment.