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@users.sourceforge.net>2013-05-20 19:43:17 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-05-20 19:46:10 +0400
commit720ba19a3c00e4918b4bc05f5c657c8b6e9b4079 (patch)
tree40b0be96c243f5d924ec6b8b1324d8dddcfb601c /include
parente3f1cad72a7f7305d0d6aff722a8d79db690a57a (diff)
cosmetics: reindent files.
Diffstat (limited to 'include')
-rw-r--r--include/IChapterInfo.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/IChapterInfo.h b/include/IChapterInfo.h
index 1965888a6..fd951eb55 100644
--- a/include/IChapterInfo.h
+++ b/include/IChapterInfo.h
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2012 see Authors.txt
+ * (C) 2006-2013 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -22,17 +22,17 @@
#pragma once
typedef enum ChapterType {
- AtomicChapter = 0, // only contain one element
- SubChapter = 1, // contain a list of elements
+ AtomicChapter = 0, // only contain one element
+ SubChapter = 1 // contain a list of elements
};
#pragma pack(push, 1)
struct ChapterElement {
- WORD Size; // size of this structure
- BYTE Type; // see ChapterType
- UINT ChapterId; // unique identifier for this element
- REFERENCE_TIME rtStart; // REFERENCE_TIME in 100ns
- REFERENCE_TIME rtStop; // REFERENCE_TIME in 100ns
+ WORD Size; // size of this structure
+ BYTE Type; // see ChapterType
+ UINT ChapterId; // unique identifier for this element
+ REFERENCE_TIME rtStart; // REFERENCE_TIME in 100ns
+ REFERENCE_TIME rtStop; // REFERENCE_TIME in 100ns
struct ChapterElement() {
Size = sizeof(*this);
}
@@ -54,7 +54,7 @@ public IUnknown {
// \param aChapterID is 0 for the top level one
STDMETHOD_(UINT, GetChapterCount)(UINT aChapterID) = 0;
- // \param aIndex start from 1 to GetChapterCount( aParentChapterId )
+ // \param aIndex start from 1 to GetChapterCount(aParentChapterId)
STDMETHOD_(UINT, GetChapterId)(UINT aParentChapterId, UINT aIndex) = 0;
STDMETHOD_(UINT, GetChapterCurrentId)() = 0;