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-12-09 01:35:55 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2016-12-09 01:35:55 +0300
commit6a03ce4a405e7fad4231201433df12099ff90bb4 (patch)
treef1543e12b2639f9895981719effae3b6a41d6bd5 /common
parent51eca509ef71adaa3ca938f41fa4f6198432cae9 (diff)
avcodec: use strict h264 handling on file-based playback with LAV Splitter
Keep using the old logic for streaming playback or any other source filters where we don't know where the data coming from.
Diffstat (limited to 'common')
-rw-r--r--common/includes/ILAVPinInfo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/includes/ILAVPinInfo.h b/common/includes/ILAVPinInfo.h
index a5385f36..24f2de45 100644
--- a/common/includes/ILAVPinInfo.h
+++ b/common/includes/ILAVPinInfo.h
@@ -29,6 +29,7 @@ interface __declspec(uuid("FD220BF4-3F26-4AD4-A4A9-348C1273A141")) ILAVPinInfo :
STDMETHOD_(DWORD,GetStreamFlags)() PURE;
#define LAV_STREAM_FLAG_ONLY_DTS 0x0000001 ///< Stream has only DTS timestamps (AVI, MKV in MS-Compat mode)
#define LAV_STREAM_FLAG_RV34_MKV 0x0000002 ///< RV30/40 in MKV or similar container with horrible timstamps
+#define LAV_STREAM_FLAG_LIVE 0x0000004 ///< Stream is from a Live source
// Get the pixel format detected for this video stream
STDMETHOD_(int,GetPixelFormat)() PURE;