Index: trunk/phase3/includes/media/GIFMetadataExtractor.php |
— | — | @@ -13,8 +13,6 @@ |
14 | 14 | static $gif_term; |
15 | 15 | |
16 | 16 | static function getMetadata( $filename ) { |
17 | | - wfProfileIn( __METHOD__ ); |
18 | | - |
19 | 17 | self::$gif_frame_sep = pack( "C", ord("," ) ); |
20 | 18 | self::$gif_extension_sep = pack( "C", ord("!" ) ); |
21 | 19 | self::$gif_term = pack( "C", ord(";" ) ); |
— | — | @@ -128,8 +126,6 @@ |
129 | 127 | } |
130 | 128 | } |
131 | 129 | |
132 | | - wfProfileOut( __METHOD__ ); |
133 | | - |
134 | 130 | return array( |
135 | 131 | 'frameCount' => $frameCount, |
136 | 132 | 'looped' => $isLooped, |