1
0
LAVFilters/include
2024-06-06 12:45:16 +02:00
..
IBitRateInfo.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
IBufferInfo.h Fix typos 2022-08-23 14:57:42 +02:00
ID3DVideoMemoryConfiguration.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
IDSMResourceBag.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
IGraphRebuildDelegate.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
IKeyFrameInfo.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
ILAVDynamicAllocator.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
IMediaSample3D.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
IMediaSideData.h Add Extensions to the DoVi metadata 2024-06-02 12:45:59 +02:00
IPinSegmentEx.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
ISpecifyPropertyPages2.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
IStreamSourceControl.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
ITrackInfo.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
IURLSourceFilterLAV.h Add an interface to control user agent and referer when opening any URL 2024-06-06 12:45:16 +02:00
LAVAudioSettings.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
LAVSplitterSettings.h Remove duplicate headers from the repository 2022-01-06 14:42:12 +01:00
LAVVideoSettings.h Support for VVC video (experimental) 2024-03-19 11:18:48 +01:00
README.txt Replaced accents with proper apostrophes 2022-08-31 09:44:52 +02:00

This directory contains header files of non-standard Interfaces that LAV Filters support.
---------------------------------------------------------------------------------------------

----------------------------------------------
IKeyFrameInfo - implemented by LAV Splitter
---------------------------------------------
IKeyFrameInfo allows players to query the position of keyframes, so they can redirect seeking
requests to those positions for very smooth seek events. Only fully supported on MKV files.

----------------------------------------------
ITrackInfo - implemented by LAV Splitter
---------------------------------------------
ITrackInfo is an interface to obtain additional information about the streams in a file.
The order to query the streams is the same as returned by IAMStreamSelect::Info

----------------------------------------------
IGraphRebuildDelegate
---------------------------------------------
IGraphRebuildDelegate is not an interface implemented by LAV Splitter itself.
It is designed to offer the ability to take over the graph-building process from the player's side.
It only exports one function which LAV Splitter will call when a stream change happens on the user's requests,
and then the player can take care of the graph changes itself instead of relying on LAV Splitter to do it.

To use IGraphRebuildDelegate, the player needs to implement it, and share the implementing class with LAV Splitter
through the "IObjectWithSite" interface, which is implemented by LAV Splitter.

----------------------------------------------
LAVSplitterSettings / LAVAudioSettings
----------------------------------------------
These interfaces are used to configure LAV programmatically, so the player can do configuration changes.