| Conditions | 23 |
| Paths | > 20000 |
| Total Lines | 218 |
| Code Lines | 123 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 27 | public function Analyze() |
||
| 28 | { |
||
| 29 | $getid3 = $this->getid3; |
||
| 30 | |||
| 31 | // http://www.atsc.org/standards/a_52a.pdf |
||
| 32 | |||
| 33 | $getid3->info['fileformat'] = 'ac3'; |
||
| 34 | $getid3->info['audio']['dataformat'] = 'ac3'; |
||
| 35 | $getid3->info['audio']['bitrate_mode'] = 'cbr'; |
||
| 36 | $getid3->info['audio']['lossless'] = false; |
||
| 37 | |||
| 38 | $getid3->info['ac3']['raw']['bsi'] = []; |
||
| 39 | $info_ac3 = &$getid3->info['ac3']; |
||
| 40 | $info_ac3_raw = &$info_ac3['raw']; |
||
| 41 | $info_ac3_raw_bsi = &$info_ac3_raw['bsi']; |
||
| 42 | |||
| 43 | // An AC-3 serial coded audio bit stream is made up of a sequence of synchronization frames |
||
| 44 | // Each synchronization frame contains 6 coded audio blocks (AB), each of which represent 256 |
||
| 45 | // new audio samples per channel. A synchronization information (SI) header at the beginning |
||
| 46 | // of each frame contains information needed to acquire and maintain synchronization. A |
||
| 47 | // bit stream information (BSI) header follows SI, and contains parameters describing the coded |
||
| 48 | // audio service. The coded audio blocks may be followed by an auxiliary data (Aux) field. At the |
||
| 49 | // end of each frame is an error check field that includes a CRC word for error detection. An |
||
| 50 | // additional CRC word is located in the SI header, the use of which, by a decoder, is optional. |
||
| 51 | // |
||
| 52 | // syncinfo() | bsi() | AB0 | AB1 | AB2 | AB3 | AB4 | AB5 | Aux | CRC |
||
| 53 | |||
| 54 | $this->fseek($getid3->info['avdataoffset'], SEEK_SET); |
||
| 55 | $ac3_header['syncinfo'] = $this->fread(5); |
||
|
|
|||
| 56 | $info_ac3_raw['synchinfo']['synchword'] = substr($ac3_header['syncinfo'], 0, 2); |
||
| 57 | |||
| 58 | if ("\x0B\x77" != $info_ac3_raw['synchinfo']['synchword']) { |
||
| 59 | throw new getid3_exception('Expecting "\x0B\x77" at offset ' . $getid3->info['avdataoffset'] . ', found \x' . strtoupper(dechex($ac3_header['syncinfo']{0})) . '\x' . strtoupper(dechex($ac3_header['syncinfo']{1})) . ' instead'); |
||
| 60 | } |
||
| 61 | |||
| 62 | // syncinfo() { |
||
| 63 | // syncword 16 |
||
| 64 | // crc1 16 |
||
| 65 | // fscod 2 |
||
| 66 | // frmsizecod 6 |
||
| 67 | // } /* end of syncinfo */ |
||
| 68 | |||
| 69 | $info_ac3_raw['synchinfo']['crc1'] = getid3_lib::LittleEndian2Int(substr($ac3_header['syncinfo'], 2, 2)); |
||
| 70 | $ac3_synchinfo_fscod_frmsizecod = getid3_lib::LittleEndian2Int(substr($ac3_header['syncinfo'], 4, 1)); |
||
| 71 | $info_ac3_raw['synchinfo']['fscod'] = ($ac3_synchinfo_fscod_frmsizecod & 0xC0) >> 6; |
||
| 72 | $info_ac3_raw['synchinfo']['frmsizecod'] = ($ac3_synchinfo_fscod_frmsizecod & 0x3F); |
||
| 73 | |||
| 74 | $info_ac3['sample_rate'] = getid3_ac3::AC3sampleRateCodeLookup($info_ac3_raw['synchinfo']['fscod']); |
||
| 75 | if ($info_ac3_raw['synchinfo']['fscod'] <= 3) { |
||
| 76 | $getid3->info['audio']['sample_rate'] = $info_ac3['sample_rate']; |
||
| 77 | } |
||
| 78 | |||
| 79 | $info_ac3['frame_length'] = getid3_ac3::AC3frameSizeLookup($info_ac3_raw['synchinfo']['frmsizecod'], $info_ac3_raw['synchinfo']['fscod']); |
||
| 80 | $info_ac3['bitrate'] = getid3_ac3::AC3bitrateLookup($info_ac3_raw['synchinfo']['frmsizecod']); |
||
| 81 | $getid3->info['audio']['bitrate'] = $info_ac3['bitrate']; |
||
| 82 | |||
| 83 | $ac3_header['bsi'] = getid3_lib::BigEndian2Bin($this->fread(15)); |
||
| 84 | |||
| 85 | $info_ac3_raw_bsi['bsid'] = bindec(substr($ac3_header['bsi'], 0, 5)); |
||
| 86 | if ($info_ac3_raw_bsi['bsid'] > 8) { |
||
| 87 | // Decoders which can decode version 8 will thus be able to decode version numbers less than 8. |
||
| 88 | // If this standard is extended by the addition of additional elements or features, a value of bsid greater than 8 will be used. |
||
| 89 | // Decoders built to this version of the standard will not be able to decode versions with bsid greater than 8. |
||
| 90 | throw new getid3_exception('Bit stream identification is version ' . $info_ac3_raw_bsi['bsid'] . ', but getID3() only understands up to version 8'); |
||
| 91 | } |
||
| 92 | |||
| 93 | $info_ac3_raw_bsi['bsmod'] = bindec(substr($ac3_header['bsi'], 5, 3)); |
||
| 94 | $info_ac3_raw_bsi['acmod'] = bindec(substr($ac3_header['bsi'], 8, 3)); |
||
| 95 | |||
| 96 | $info_ac3['service_type'] = getid3_ac3::AC3serviceTypeLookup($info_ac3_raw_bsi['bsmod'], $info_ac3_raw_bsi['acmod']); |
||
| 97 | $ac3_coding_mode = getid3_ac3::AC3audioCodingModeLookup($info_ac3_raw_bsi['acmod']); |
||
| 98 | foreach ($ac3_coding_mode as $key => $value) { |
||
| 99 | $info_ac3[$key] = $value; |
||
| 100 | } |
||
| 101 | switch ($info_ac3_raw_bsi['acmod']) { |
||
| 102 | case 0: |
||
| 103 | case 1: |
||
| 104 | $getid3->info['audio']['channelmode'] = 'mono'; |
||
| 105 | break; |
||
| 106 | case 3: |
||
| 107 | case 4: |
||
| 108 | $getid3->info['audio']['channelmode'] = 'stereo'; |
||
| 109 | break; |
||
| 110 | default: |
||
| 111 | $getid3->info['audio']['channelmode'] = 'surround'; |
||
| 112 | break; |
||
| 113 | } |
||
| 114 | $getid3->info['audio']['channels'] = $info_ac3['num_channels']; |
||
| 115 | |||
| 116 | $offset = 11; |
||
| 117 | |||
| 118 | if ($info_ac3_raw_bsi['acmod'] & 0x01) { |
||
| 119 | // If the lsb of acmod is a 1, center channel is in use and cmixlev follows in the bit stream. |
||
| 120 | $info_ac3_raw_bsi['cmixlev'] = bindec(substr($ac3_header['bsi'], $offset, 2)); |
||
| 121 | $info_ac3['center_mix_level'] = getid3_ac3::AC3centerMixLevelLookup($info_ac3_raw_bsi['cmixlev']); |
||
| 122 | $offset += 2; |
||
| 123 | } |
||
| 124 | |||
| 125 | if ($info_ac3_raw_bsi['acmod'] & 0x04) { |
||
| 126 | // If the msb of acmod is a 1, surround channels are in use and surmixlev follows in the bit stream. |
||
| 127 | $info_ac3_raw_bsi['surmixlev'] = bindec(substr($ac3_header['bsi'], $offset, 2)); |
||
| 128 | $info_ac3['surround_mix_level'] = getid3_ac3::AC3surroundMixLevelLookup($info_ac3_raw_bsi['surmixlev']); |
||
| 129 | $offset += 2; |
||
| 130 | } |
||
| 131 | |||
| 132 | if (0x02 == $info_ac3_raw_bsi['acmod']) { |
||
| 133 | // When operating in the two channel mode, this 2-bit code indicates whether or not the program has been encoded in Dolby Surround. |
||
| 134 | $info_ac3_raw_bsi['dsurmod'] = bindec(substr($ac3_header['bsi'], $offset, 2)); |
||
| 135 | $info_ac3['dolby_surround_mode'] = getid3_ac3::AC3dolbySurroundModeLookup($info_ac3_raw_bsi['dsurmod']); |
||
| 136 | $offset += 2; |
||
| 137 | } |
||
| 138 | |||
| 139 | $info_ac3_raw_bsi['lfeon'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 140 | $info_ac3['lfe_enabled'] = $info_ac3_raw_bsi['lfeon']; |
||
| 141 | if ($info_ac3_raw_bsi['lfeon']) { |
||
| 142 | $getid3->info['audio']['channels'] .= '.1'; |
||
| 143 | } |
||
| 144 | |||
| 145 | $info_ac3['channels_enabled'] = getid3_ac3::AC3channelsEnabledLookup($info_ac3_raw_bsi['acmod'], $info_ac3_raw_bsi['lfeon']); |
||
| 146 | |||
| 147 | // This indicates how far the average dialogue level is below digital 100 percent. Valid values are 1�31. |
||
| 148 | // The value of 0 is reserved. The values of 1 to 31 are interpreted as -1 dB to -31 dB with respect to digital 100 percent. |
||
| 149 | $info_ac3_raw_bsi['dialnorm'] = bindec(substr($ac3_header['bsi'], $offset, 5)); |
||
| 150 | $offset += 5; |
||
| 151 | $info_ac3['dialogue_normalization'] = '-' . $info_ac3_raw_bsi['dialnorm'] . 'dB'; |
||
| 152 | |||
| 153 | $info_ac3_raw_bsi['compre_flag'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 154 | if ($info_ac3_raw_bsi['compre_flag']) { |
||
| 155 | $info_ac3_raw_bsi['compr'] = bindec(substr($ac3_header['bsi'], $offset, 8)); |
||
| 156 | $offset += 8; |
||
| 157 | |||
| 158 | $info_ac3['heavy_compression'] = getid3_ac3::AC3heavyCompression($info_ac3_raw_bsi['compr']); |
||
| 159 | } |
||
| 160 | |||
| 161 | $info_ac3_raw_bsi['langcode_flag'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 162 | if ($info_ac3_raw_bsi['langcode_flag']) { |
||
| 163 | $info_ac3_raw_bsi['langcod'] = bindec(substr($ac3_header['bsi'], $offset, 8)); |
||
| 164 | $offset += 8; |
||
| 165 | } |
||
| 166 | |||
| 167 | $info_ac3_raw_bsi['audprodie'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 168 | if ($info_ac3_raw_bsi['audprodie']) { |
||
| 169 | $info_ac3_raw_bsi['mixlevel'] = bindec(substr($ac3_header['bsi'], $offset, 5)); |
||
| 170 | $offset += 5; |
||
| 171 | |||
| 172 | $info_ac3_raw_bsi['roomtyp'] = bindec(substr($ac3_header['bsi'], $offset, 2)); |
||
| 173 | $offset += 2; |
||
| 174 | |||
| 175 | $info_ac3['mixing_level'] = (80 + $info_ac3_raw_bsi['mixlevel']) . 'dB'; |
||
| 176 | $info_ac3['room_type'] = getid3_ac3::AC3roomTypeLookup($info_ac3_raw_bsi['roomtyp']); |
||
| 177 | } |
||
| 178 | |||
| 179 | if (0x00 == $info_ac3_raw_bsi['acmod']) { |
||
| 180 | // If acmod is 0, then two completely independent program channels (dual mono) |
||
| 181 | // are encoded into the bit stream, and are referenced as Ch1, Ch2. In this case, |
||
| 182 | // a number of additional items are present in BSI or audblk to fully describe Ch2. |
||
| 183 | |||
| 184 | // This indicates how far the average dialogue level is below digital 100 percent. Valid values are 1�31. |
||
| 185 | // The value of 0 is reserved. The values of 1 to 31 are interpreted as -1 dB to -31 dB with respect to digital 100 percent. |
||
| 186 | $info_ac3_raw_bsi['dialnorm2'] = bindec(substr($ac3_header['bsi'], $offset, 5)); |
||
| 187 | $offset += 5; |
||
| 188 | |||
| 189 | $info_ac3['dialogue_normalization2'] = '-' . $info_ac3_raw_bsi['dialnorm2'] . 'dB'; |
||
| 190 | |||
| 191 | $info_ac3_raw_bsi['compre_flag2'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 192 | if ($info_ac3_raw_bsi['compre_flag2']) { |
||
| 193 | $info_ac3_raw_bsi['compr2'] = bindec(substr($ac3_header['bsi'], $offset, 8)); |
||
| 194 | $offset += 8; |
||
| 195 | |||
| 196 | $info_ac3['heavy_compression2'] = getid3_ac3::AC3heavyCompression($info_ac3_raw_bsi['compr2']); |
||
| 197 | } |
||
| 198 | |||
| 199 | $info_ac3_raw_bsi['langcode_flag2'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 200 | if ($info_ac3_raw_bsi['langcode_flag2']) { |
||
| 201 | $info_ac3_raw_bsi['langcod2'] = bindec(substr($ac3_header['bsi'], $offset, 8)); |
||
| 202 | $offset += 8; |
||
| 203 | } |
||
| 204 | |||
| 205 | $info_ac3_raw_bsi['audprodie2'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 206 | if ($info_ac3_raw_bsi['audprodie2']) { |
||
| 207 | $info_ac3_raw_bsi['mixlevel2'] = bindec(substr($ac3_header['bsi'], $offset, 5)); |
||
| 208 | $offset += 5; |
||
| 209 | |||
| 210 | $info_ac3_raw_bsi['roomtyp2'] = bindec(substr($ac3_header['bsi'], $offset, 2)); |
||
| 211 | $offset += 2; |
||
| 212 | |||
| 213 | $info_ac3['mixing_level2'] = (80 + $info_ac3_raw_bsi['mixlevel2']) . 'dB'; |
||
| 214 | $info_ac3['room_type2'] = getid3_ac3::AC3roomTypeLookup($info_ac3_raw_bsi['roomtyp2']); |
||
| 215 | } |
||
| 216 | } |
||
| 217 | |||
| 218 | $info_ac3_raw_bsi['copyright'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 219 | |||
| 220 | $info_ac3_raw_bsi['original'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 221 | |||
| 222 | $info_ac3_raw_bsi['timecode1_flag'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 223 | if ($info_ac3_raw_bsi['timecode1_flag']) { |
||
| 224 | $info_ac3_raw_bsi['timecode1'] = bindec(substr($ac3_header['bsi'], $offset, 14)); |
||
| 225 | $offset += 14; |
||
| 226 | } |
||
| 227 | |||
| 228 | $info_ac3_raw_bsi['timecode2_flag'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 229 | if ($info_ac3_raw_bsi['timecode2_flag']) { |
||
| 230 | $info_ac3_raw_bsi['timecode2'] = bindec(substr($ac3_header['bsi'], $offset, 14)); |
||
| 231 | $offset += 14; |
||
| 232 | } |
||
| 233 | |||
| 234 | $info_ac3_raw_bsi['addbsi_flag'] = '1' == $ac3_header['bsi']{$offset++}; |
||
| 235 | if ($info_ac3_raw_bsi['addbsi_flag']) { |
||
| 236 | $info_ac3_raw_bsi['addbsi_length'] = bindec(substr($ac3_header['bsi'], $offset, 6)); |
||
| 237 | $offset += 6; |
||
| 238 | |||
| 239 | $ac3_header['bsi'] .= getid3_lib::BigEndian2Bin($this->fread($info_ac3_raw_bsi['addbsi_length'])); |
||
| 240 | |||
| 241 | $info_ac3_raw_bsi['addbsi_data'] = substr($ac3_header['bsi'], 119, $info_ac3_raw_bsi['addbsi_length'] * 8); |
||
| 242 | } |
||
| 243 | |||
| 244 | return true; |
||
| 245 | } |
||
| 473 |