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-01-09 00:18:39 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2016-01-10 15:27:37 +0300
commit5fa4bed01f053989de33a82eaa11d727f93f2545 (patch)
tree3fd9fcf4dc4d18751042e53570d3457dc64da439 /common
parent1d507a898f1eacdb5ba9e7a84f03fe1103f483b5 (diff)
Implement basic H264 MVC decoder based on Intel MediaSDK
Diffstat (limited to 'common')
-rw-r--r--common/includes/IMediaSample3D.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/includes/IMediaSample3D.h b/common/includes/IMediaSample3D.h
new file mode 100644
index 00000000..51db24f5
--- /dev/null
+++ b/common/includes/IMediaSample3D.h
@@ -0,0 +1,12 @@
+// -----------------------------------------------------------------
+// IMediaSample3D interface and data structure definitions
+// -----------------------------------------------------------------
+
+#pragma once
+
+[uuid("E92D790E-BF54-43C4-B394-8CA0A41BF9EC")]
+interface IMediaSample3D : public IMediaSample2
+{
+ STDMETHOD(Enable3D)() = 0;
+ STDMETHOD(GetPointer3D)(BYTE **ppBuffer) = 0;
+};