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\Format;
13  
14 use Evenement\EventEmitterInterface;
15 use FFMpeg\FFProbe;
16 use FFMpeg\Media\MediaTypeInterface;
17  
18 interface ProgressableInterface extends EventEmitterInterface
19 {
20 /**
21 * Creates the progress listener.
22 *
23 * @param MediaTypeInterface $media
24 * @param FFProbe $ffprobe
25 * @param Integer $pass The current pas snumber
26 * @param Integer $total The total pass number
27 *
28 * @return array An array of listeners
29 */
30 public function createProgressListener(MediaTypeInterface $media, FFProbe $ffprobe, $pass, $total);
31 }