Rename Interfaces

This commit is contained in:
grosroro 2012-05-30 12:22:22 +02:00
commit b1e6eeaf95
14 changed files with 238 additions and 76 deletions

View file

@ -11,6 +11,11 @@
namespace FFMpeg\Format;
/**
* The base audio interface
*
* @author Romain Neutron imprec@gmail.com
*/
interface Audio
{
@ -21,13 +26,6 @@ interface Audio
*/
public function getAudioCodec();
/**
* Get the audio sample rate
*
* @return integer
*/
public function getAudioSampleRate();
/**
* Get the kiloBitrate value
*
@ -35,10 +33,4 @@ interface Audio
*/
public function getKiloBitrate();
/**
* Returns the list of available audio codecs for this format
*
* @return array
*/
public function getAvailableAudioCodecs();
}