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\Video;
13  
14 use FFMpeg\Filters\FilterInterface;
15 use FFMpeg\Format\VideoInterface;
16 use FFMpeg\Media\Video;
17  
18 interface VideoFilterInterface extends FilterInterface
19 {
20 /**
21 * Applies the filter on the the Video media given an format.
22 *
23 * @param Video $video
24 * @param VideoInterface $format
25 *
26 * @return array An array of arguments
27 */
28 public function apply(Video $video, VideoInterface $format);
29 }