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>2015-08-12 17:10:11 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2015-08-12 17:10:11 +0300
commit8c3ba1a7689b1ddbec8e2455607ae9c5b218129d (patch)
tree6376c8e71ca659230b013a962920e54ee28d3296 /common
parentbc907b8567994eae53cd8a4001a4a63cd65217c4 (diff)
Add an option to specify the maximum queue size in packets
Diffstat (limited to 'common')
-rw-r--r--common/includes/LAVSplitterSettings.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/includes/LAVSplitterSettings.h b/common/includes/LAVSplitterSettings.h
index 724ea7b6..d8a6a192 100644
--- a/common/includes/LAVSplitterSettings.h
+++ b/common/includes/LAVSplitterSettings.h
@@ -184,4 +184,10 @@ interface ILAVFSettings : public IUnknown
// Get the duration (in ms) of analysis for network streams (to find the streams and codec parameters)
STDMETHOD_(DWORD, GetNetworkStreamAnalysisDuration)() = 0;
+
+ // Set the maximum queue size, in number of packets
+ STDMETHOD(SetMaxQueueSize)(DWORD dwMaxSize) = 0;
+
+ // Get the maximum queue size, in number of packets
+ STDMETHOD_(DWORD, GetMaxQueueSize)() = 0;
};