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
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2012-10-20 12:41:38 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-10-20 12:41:38 +0400
commite07e32aee550187e6635e5b757163581c05840e2 (patch)
treea5cc58a4e6f812a6025fcedb3594537a19d12ec8 /developer_info
parent6f7b899b520a40ebeeb831ac2a1bb01c77095c4f (diff)
Update developer_info0.52
Diffstat (limited to 'developer_info')
-rw-r--r--developer_info/LAVAudioSettings.h1
-rw-r--r--developer_info/LAVVideoSettings.h20
2 files changed, 15 insertions, 6 deletions
diff --git a/developer_info/LAVAudioSettings.h b/developer_info/LAVAudioSettings.h
index e0274971..66ff22cb 100644
--- a/developer_info/LAVAudioSettings.h
+++ b/developer_info/LAVAudioSettings.h
@@ -49,6 +49,7 @@ typedef enum LAVAudioCodec {
Codec_RealAudio,
Codec_WMALL,
Codec_ALAC,
+ Codec_Opus,
Codec_NB // Number of entrys (do not use when dynamically linking)
};
diff --git a/developer_info/LAVVideoSettings.h b/developer_info/LAVVideoSettings.h
index 7ad43374..5ddff61d 100644
--- a/developer_info/LAVVideoSettings.h
+++ b/developer_info/LAVVideoSettings.h
@@ -192,15 +192,17 @@ interface ILAVVideoSettings : public IUnknown
// Set wether the aspect ratio encoded in the stream should be forwarded to the renderer,
// or the aspect ratio specified by the source filter should be kept.
- // TRUE = AR from the Stream
- // FALSE = AR from the source filter
- STDMETHOD(SetStreamAR)(BOOL bStreamAR) = 0;
+ // 0 = AR from the source filter
+ // 1 = AR from the Stream
+ // 2 = AR from stream if source is not reliable
+ STDMETHOD(SetStreamAR)(DWORD bStreamAR) = 0;
// Get wether the aspect ratio encoded in the stream should be forwarded to the renderer,
// or the aspect ratio specified by the source filter should be kept.
- // TRUE = AR from the Stream
- // FALSE = AR from the source filter
- STDMETHOD_(BOOL,GetStreamAR)() = 0;
+ // 0 = AR from the source filter
+ // 1 = AR from the Stream
+ // 2 = AR from stream if source is not reliable
+ STDMETHOD_(DWORD,GetStreamAR)() = 0;
// Configure which pixel formats are enabled for output
// If pixFmt is invalid, Get will return FALSE and Set E_FAIL
@@ -301,6 +303,12 @@ interface ILAVVideoSettings : public IUnknown
// Get if the MS WMV9 DMO Decoder should be used for VC-1/WMV3
STDMETHOD_(BOOL, GetUseMSWMV9Decoder)() = 0;
+
+ // Set if DVD Video support is enabled
+ STDMETHOD(SetDVDVideoSupport)(BOOL bEnabled) = 0;
+
+ // Get if DVD Video support is enabled
+ STDMETHOD_(BOOL,GetDVDVideoSupport)() = 0;
};
// LAV Video status interface