scratch – Blame information for rev 120

Subversion Repositories:
Rev:
Rev Author Line No. Line
120 office 1 <?php
2  
3 /*
4 * This file is part of PHP-FFmpeg.
5 *
6 * (c) Alchemy <dev.team@alchemy.fr>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11  
12 namespace FFMpeg\Filters\Audio;
13  
14 use FFMpeg\Filters\FilterInterface;
15 use FFMpeg\Format\AudioInterface;
16 use FFMpeg\Media\Audio;
17  
18 interface AudioFilterInterface extends FilterInterface
19 {
20 /**
21 * Applies the filter on the the Audio media given an format.
22 *
23 * @param Audio $audio
24 * @param AudioInterface $format
25 *
26 * @return array An array of arguments
27 */
28 public function apply(Audio $audio, AudioInterface $format);
29 }