| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class VP9 extends Video |
||
| 25 | { |
||
| 26 | public function __construct($audioCodec = 'libvorbis', $videoCodec = 'libvpx-vp9') |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritDoc} |
||
| 35 | */ |
||
| 36 | public function supportBFrames() |
||
| 37 | { |
||
| 38 | return true; |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritDoc} |
||
| 43 | */ |
||
| 44 | public function getAvailableAudioCodecs() |
||
| 45 | { |
||
| 46 | return array('libvorbis'); |
||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritDoc} |
||
| 51 | */ |
||
| 52 | public function getAvailableVideoCodecs() |
||
| 55 | } |
||
| 56 | } |
||
| 57 |