Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | final class VP9 extends Video |
||
18 | { |
||
19 | public function __construct($videoCodec = 'libvpx-vp9') |
||
20 | { |
||
21 | $this->setVideoCodec($videoCodec); |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * {@inheritDoc} |
||
26 | */ |
||
27 | public function getAvailableAudioCodecs() |
||
28 | { |
||
29 | return array(); |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * {@inheritDoc} |
||
34 | */ |
||
35 | public function getAvailableVideoCodecs() |
||
38 | } |
||
39 | } |
||
40 |