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

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxhmikosr <xhmikosr@yahoo.com>2012-08-11 19:27:15 +0400
committerxhmikosr <xhmikosr@yahoo.com>2012-08-11 19:30:01 +0400
commitda5b77717a48d80a7fd0702f5b7c284cf31a3bbf (patch)
tree733e78ce1fc4cdadbd5906fb777d3832787a9af6 /src/filters/muxer
parent2ad91db093dc84d6cb56275cd5588dd240ce618d (diff)
break a few enums in separate lines; it's easier to read
Diffstat (limited to 'src/filters/muxer')
-rw-r--r--src/filters/muxer/BaseMuxer/BaseMuxerInputPin.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/filters/muxer/BaseMuxer/BaseMuxerInputPin.h b/src/filters/muxer/BaseMuxer/BaseMuxerInputPin.h
index db6161972..eebaa2930 100644
--- a/src/filters/muxer/BaseMuxer/BaseMuxerInputPin.h
+++ b/src/filters/muxer/BaseMuxer/BaseMuxerInputPin.h
@@ -30,7 +30,14 @@ struct MuxerPacket {
CBaseMuxerInputPin* pPin;
REFERENCE_TIME rtStart, rtStop;
CAtlArray<BYTE> pData;
- enum flag_t {empty = 0, timevalid = 1, syncpoint = 2, discontinuity = 4, eos = 8, bogus = 16};
+ enum flag_t {
+ empty = 0,
+ timevalid = 1,
+ syncpoint = 2,
+ discontinuity = 4,
+ eos = 8,
+ bogus = 16
+ };
DWORD flags;
int index;
struct MuxerPacket(CBaseMuxerInputPin* pPin) {