From b2eb0df792e7724538c4afeb7d8929a241a03773 Mon Sep 17 00:00:00 2001 From: Heshan Date: Tue, 12 Jul 2011 09:42:44 +0530 Subject: Remove the library addons and other unwanted folders. --- .../php-reader/src/ISO14496/Box/MFRA.php | 85 ---------------------- 1 file changed, 85 deletions(-) delete mode 100644 libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ISO14496/Box/MFRA.php (limited to 'libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ISO14496/Box/MFRA.php') diff --git a/libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ISO14496/Box/MFRA.php b/libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ISO14496/Box/MFRA.php deleted file mode 100644 index c29f76f..0000000 --- a/libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ISO14496/Box/MFRA.php +++ /dev/null @@ -1,85 +0,0 @@ -Movie Fragment Random Access Box provides a table which may assist - * readers in finding random access points in a file using movie fragments. It - * contains a track fragment random access box for each track for which - * information is provided (which may not be all tracks). It is usually placed - * at or near the end of the file; the last box within the Movie Fragment Random - * Access Box provides a copy of the length field from the Movie Fragment Random - * Access Box. Readers may attempt to find this box by examining the last 32 - * bits of the file, or scanning backwards from the end of the file for a Movie - * Fragment Random Access Offset Box and using the size information in it, to - * see if that locates the beginning of a Movie Fragment Random Access Box. - * - * This box provides only a hint as to where random access points are; the movie - * fragments themselves are definitive. It is recommended that readers take care - * in both locating and using this box as modifications to the file after it was - * created may render either the pointers, or the declaration of random access - * points, incorrect. - * - * @package php-reader - * @subpackage ISO 14496 - * @author Sven Vollbehr - * @copyright Copyright (c) 2008 The PHP Reader Project Workgroup - * @license http://code.google.com/p/php-reader/wiki/License New BSD License - * @version $Rev: 92 $ - */ -final class ISO14496_Box_MFRA extends ISO14496_Box -{ - /** - * Constructs the class with given parameters and reads box related data from - * the ISO Base Media file. - * - * @param Reader $reader The reader object. - */ - public function __construct($reader = null, &$options = array()) - { - parent::__construct($reader, $options); - $this->setContainer(true); - - if ($reader === null) - return; - - $this->constructBoxes(); - } -} -- cgit v1.2.3