From 83408e985f36e4646bc4378225562b8a41cf12ef Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Fri, 11 May 2012 00:29:43 +0200 Subject: [PATCH] Fix CS --- src/FFMpeg/AdapterInterface.php | 1 - src/FFMpeg/Format/Audio/Flac.php | 2 -- src/FFMpeg/Format/Audio/Mp3.php | 2 -- src/FFMpeg/Format/Video/Ogg.php | 2 -- src/FFMpeg/Format/Video/WebM.php | 2 -- src/FFMpeg/Format/Video/X264.php | 2 -- 6 files changed, 11 deletions(-) diff --git a/src/FFMpeg/AdapterInterface.php b/src/FFMpeg/AdapterInterface.php index f47408c..bbd542a 100644 --- a/src/FFMpeg/AdapterInterface.php +++ b/src/FFMpeg/AdapterInterface.php @@ -15,5 +15,4 @@ interface AdapterInterface { public static function load(\Monolog\Logger $logger); - } diff --git a/src/FFMpeg/Format/Audio/Flac.php b/src/FFMpeg/Format/Audio/Flac.php index fdce009..a556e62 100644 --- a/src/FFMpeg/Format/Audio/Flac.php +++ b/src/FFMpeg/Format/Audio/Flac.php @@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultAudioFormat; */ class Flac extends DefaultAudioFormat { - protected $audioCodec = 'flac'; /** @@ -30,5 +29,4 @@ class Flac extends DefaultAudioFormat { return array('flac'); } - } \ No newline at end of file diff --git a/src/FFMpeg/Format/Audio/Mp3.php b/src/FFMpeg/Format/Audio/Mp3.php index 607efd0..ee60c38 100644 --- a/src/FFMpeg/Format/Audio/Mp3.php +++ b/src/FFMpeg/Format/Audio/Mp3.php @@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultAudioFormat; */ class Mp3 extends DefaultAudioFormat { - protected $audioCodec = 'libmp3lame'; /** @@ -30,5 +29,4 @@ class Mp3 extends DefaultAudioFormat { return array('libmp3lame'); } - } \ No newline at end of file diff --git a/src/FFMpeg/Format/Video/Ogg.php b/src/FFMpeg/Format/Video/Ogg.php index c793c3b..352a5ba 100644 --- a/src/FFMpeg/Format/Video/Ogg.php +++ b/src/FFMpeg/Format/Video/Ogg.php @@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat; */ class Ogg extends DefaultVideoFormat { - protected $audioCodec = 'libvorbis'; protected $videoCodec = 'libtheora'; @@ -39,5 +38,4 @@ class Ogg extends DefaultVideoFormat { return array('libtheora'); } - } \ No newline at end of file diff --git a/src/FFMpeg/Format/Video/WebM.php b/src/FFMpeg/Format/Video/WebM.php index 195e796..94a9aee 100644 --- a/src/FFMpeg/Format/Video/WebM.php +++ b/src/FFMpeg/Format/Video/WebM.php @@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat; */ class WebM extends DefaultVideoFormat { - protected $audioCodec = 'libvorbis'; protected $videoCodec = 'libvpx'; @@ -47,5 +46,4 @@ class WebM extends DefaultVideoFormat { return array('libvpx'); } - } \ No newline at end of file diff --git a/src/FFMpeg/Format/Video/X264.php b/src/FFMpeg/Format/Video/X264.php index 09799d3..34b7d12 100644 --- a/src/FFMpeg/Format/Video/X264.php +++ b/src/FFMpeg/Format/Video/X264.php @@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat; */ class X264 extends DefaultVideoFormat { - protected $audioCodec = 'libmp3lame'; protected $videoCodec = 'libx264'; @@ -39,5 +38,4 @@ class X264 extends DefaultVideoFormat { return array('libx264'); } - } \ No newline at end of file