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

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2016-02-21 01:52:26 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2016-02-21 01:54:52 +0300
commit450d195b088b512ddef73ad988d2b2a69884b141 (patch)
treeb47b25bd83768a048e65290162388164e3e850fc /common
parent0471cb14cdeb3e19eec1f08a68a0e7340890b30c (diff)
Change 3D Plane Side Data structure
Using ints and no dedicated flag field anymore, instead using negative values instead.
Diffstat (limited to 'common')
-rw-r--r--common/includes/IMediaSideData.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/common/includes/IMediaSideData.h b/common/includes/IMediaSideData.h
index 90563135..0667c497 100644
--- a/common/includes/IMediaSideData.h
+++ b/common/includes/IMediaSideData.h
@@ -59,12 +59,11 @@ DEFINE_GUID(IID_MediaSideData3DOffset,
struct MediaSideData3DOffset
{
// Number of valid offsets (up to 32)
- BYTE offset_count;
+ int offset_count;
- // Direction Flags
- BYTE direction_flag[32];
-
- // Offset Value
- BYTE offset[32];
+ // Offset Value, can be positive or negative
+ // positive values offset closer to the viewer (move right on the left view, left on the right view)
+ // negative values offset further away from the viewer (move left on the left view, right on the right view)
+ int offset[32];
};
#pragma pack(pop)