Added initial parameters

This commit is contained in:
Ilja Lukin 2020-02-24 21:42:38 +01:00
commit 73fdec8290
6 changed files with 85 additions and 5 deletions

View file

@ -56,9 +56,16 @@ interface VideoInterface extends AudioInterface
public function getAvailableVideoCodecs();
/**
* Returns the list of available video codecs for this format.
* Returns the list of additional parameters for this format.
*
* @return array
*/
public function getAdditionalParameters();
/**
* Returns the list of initial parameters for this format
*
* @return array
*/
public function getInitialParameters();
}