Fix CS
This commit is contained in:
parent
084bb43fc1
commit
cee2e1892e
7 changed files with 14 additions and 14 deletions
|
|
@ -13,7 +13,7 @@ namespace FFMpeg\Format;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base audio interface
|
* The base audio interface
|
||||||
*
|
*
|
||||||
* @author Romain Neutron imprec@gmail.com
|
* @author Romain Neutron imprec@gmail.com
|
||||||
*/
|
*/
|
||||||
interface Audio
|
interface Audio
|
||||||
|
|
|
||||||
|
|
@ -14,10 +14,10 @@ namespace FFMpeg\Format\Audio;
|
||||||
use FFMpeg\Format\Audio as BaseAudio;
|
use FFMpeg\Format\Audio as BaseAudio;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The interactive audio interface. This provide a method to list available
|
* The interactive audio interface. This provide a method to list available
|
||||||
* codecs. This is usefull to build interactive development and switch between
|
* codecs. This is usefull to build interactive development and switch between
|
||||||
* different codecs
|
* different codecs
|
||||||
*
|
*
|
||||||
* @author Romain Neutron imprec@gmail.com
|
* @author Romain Neutron imprec@gmail.com
|
||||||
*/
|
*/
|
||||||
interface InteractiveAudio extends BaseAudio
|
interface InteractiveAudio extends BaseAudio
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@ use FFMpeg\Format\Audio as BaseAudio;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The resamplable audio interface
|
* The resamplable audio interface
|
||||||
*
|
*
|
||||||
* This provide a method to define the AudiosampleRate
|
* This provide a method to define the AudiosampleRate
|
||||||
*
|
*
|
||||||
* @author Romain Neutron imprec@gmail.com
|
* @author Romain Neutron imprec@gmail.com
|
||||||
*/
|
*/
|
||||||
interface ResamplableAudio extends BaseAudio
|
interface ResamplableAudio extends BaseAudio
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ namespace FFMpeg\Format;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The base video interface
|
* The base video interface
|
||||||
*
|
*
|
||||||
* @author Romain Neutron imprec@gmail.com
|
* @author Romain Neutron imprec@gmail.com
|
||||||
*/
|
*/
|
||||||
interface Video extends Audio
|
interface Video extends Audio
|
||||||
|
|
|
||||||
|
|
@ -14,10 +14,10 @@ namespace FFMpeg\Format\Video;
|
||||||
use FFMpeg\Format\Video as BaseVideo;
|
use FFMpeg\Format\Video as BaseVideo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The interactive video interface. This provide a method to list available
|
* The interactive video interface. This provide a method to list available
|
||||||
* codecs. This is usefull to build interactive development and switch between
|
* codecs. This is usefull to build interactive development and switch between
|
||||||
* different codecs
|
* different codecs
|
||||||
*
|
*
|
||||||
* @author Romain Neutron imprec@gmail.com
|
* @author Romain Neutron imprec@gmail.com
|
||||||
*/
|
*/
|
||||||
interface InteractiveVideo extends BaseVideo
|
interface InteractiveVideo extends BaseVideo
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@ use FFMpeg\Format\Video as BaseVideo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The resamplable video interface
|
* The resamplable video interface
|
||||||
*
|
*
|
||||||
* This interface provides frame rate and GOP size settings for video encoding
|
* This interface provides frame rate and GOP size settings for video encoding
|
||||||
*
|
*
|
||||||
* @author Romain Neutron imprec@gmail.com
|
* @author Romain Neutron imprec@gmail.com
|
||||||
*/
|
*/
|
||||||
interface ResamplableVideo extends BaseVideo
|
interface ResamplableVideo extends BaseVideo
|
||||||
|
|
|
||||||
|
|
@ -15,16 +15,16 @@ use FFMpeg\Format\Video as BaseVideo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The resizable video interface
|
* The resizable video interface
|
||||||
*
|
*
|
||||||
* This interface provides methods for video resizing.
|
* This interface provides methods for video resizing.
|
||||||
*
|
*
|
||||||
* @author Romain Neutron imprec@gmail.com
|
* @author Romain Neutron imprec@gmail.com
|
||||||
*/
|
*/
|
||||||
interface ResizableVideo extends BaseVideo
|
interface ResizableVideo extends BaseVideo
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the width setting.
|
* Returns the width setting.
|
||||||
* The return of this method should not depend on a media file size
|
* The return of this method should not depend on a media file size
|
||||||
*
|
*
|
||||||
* @return integer
|
* @return integer
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue