Apply frame filters on Frame::save

This commit is contained in:
Romain Neutron 2013-09-04 19:52:24 +02:00
commit bcf3e5f65a
3 changed files with 10 additions and 5 deletions

View file

@ -13,9 +13,8 @@ namespace FFMpeg\Filters\Frame;
use FFMpeg\Filters\FilterInterface;
use FFMpeg\Media\Frame;
use FFMpeg\Format\FrameInterface;
interface FrameFilterInterface extends FilterInterface
{
public function apply(Frame $frame, FrameInterface $format);
public function apply(Frame $frame);
}