PageRenderTime 73ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/sys/plugins/id3/getid3/module.audio.aac.php

https://bitbucket.org/DESURE/dcms
PHP | 513 lines | 317 code | 69 blank | 127 comment | 62 complexity | 867fa444760a8563f91d4e6fec0b7d9b MD5 | raw file
  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at http://getid3.sourceforge.net //
  5. // or http://www.getid3.org //
  6. // also https://github.com/JamesHeinrich/getID3 //
  7. /////////////////////////////////////////////////////////////////
  8. // See readme.txt for more details //
  9. /////////////////////////////////////////////////////////////////
  10. // //
  11. // module.audio.aac.php //
  12. // module for analyzing AAC Audio files //
  13. // dependencies: NONE //
  14. // ///
  15. /////////////////////////////////////////////////////////////////
  16. class getid3_aac extends getid3_handler
  17. {
  18. public function Analyze() {
  19. $info = &$this->getid3->info;
  20. $this->fseek($info['avdataoffset']);
  21. if ($this->fread(4) == 'ADIF') {
  22. $this->getAACADIFheaderFilepointer();
  23. } else {
  24. $this->getAACADTSheaderFilepointer();
  25. }
  26. return true;
  27. }
  28. public function getAACADIFheaderFilepointer() {
  29. $info = &$this->getid3->info;
  30. $info['fileformat'] = 'aac';
  31. $info['audio']['dataformat'] = 'aac';
  32. $info['audio']['lossless'] = false;
  33. $this->fseek($info['avdataoffset']);
  34. $AACheader = $this->fread(1024);
  35. $offset = 0;
  36. if (substr($AACheader, 0, 4) == 'ADIF') {
  37. // http://faac.sourceforge.net/wiki/index.php?page=ADIF
  38. // http://libmpeg.org/mpeg4/doc/w2203tfs.pdf
  39. // adif_header() {
  40. // adif_id 32
  41. // copyright_id_present 1
  42. // if( copyright_id_present )
  43. // copyright_id 72
  44. // original_copy 1
  45. // home 1
  46. // bitstream_type 1
  47. // bitrate 23
  48. // num_program_config_elements 4
  49. // for (i = 0; i < num_program_config_elements + 1; i++ ) {
  50. // if( bitstream_type == '0' )
  51. // adif_buffer_fullness 20
  52. // program_config_element()
  53. // }
  54. // }
  55. $AACheaderBitstream = getid3_lib::BigEndian2Bin($AACheader);
  56. $bitoffset = 0;
  57. $info['aac']['header_type'] = 'ADIF';
  58. $bitoffset += 32;
  59. $info['aac']['header']['mpeg_version'] = 4;
  60. $info['aac']['header']['copyright'] = (bool) (substr($AACheaderBitstream, $bitoffset, 1) == '1');
  61. $bitoffset += 1;
  62. if ($info['aac']['header']['copyright']) {
  63. $info['aac']['header']['copyright_id'] = getid3_lib::Bin2String(substr($AACheaderBitstream, $bitoffset, 72));
  64. $bitoffset += 72;
  65. }
  66. $info['aac']['header']['original_copy'] = (bool) (substr($AACheaderBitstream, $bitoffset, 1) == '1');
  67. $bitoffset += 1;
  68. $info['aac']['header']['home'] = (bool) (substr($AACheaderBitstream, $bitoffset, 1) == '1');
  69. $bitoffset += 1;
  70. $info['aac']['header']['is_vbr'] = (bool) (substr($AACheaderBitstream, $bitoffset, 1) == '1');
  71. $bitoffset += 1;
  72. if ($info['aac']['header']['is_vbr']) {
  73. $info['audio']['bitrate_mode'] = 'vbr';
  74. $info['aac']['header']['bitrate_max'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 23));
  75. $bitoffset += 23;
  76. } else {
  77. $info['audio']['bitrate_mode'] = 'cbr';
  78. $info['aac']['header']['bitrate'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 23));
  79. $bitoffset += 23;
  80. $info['audio']['bitrate'] = $info['aac']['header']['bitrate'];
  81. }
  82. if ($info['audio']['bitrate'] == 0) {
  83. $info['error'][] = 'Corrupt AAC file: bitrate_audio == zero';
  84. return false;
  85. }
  86. $info['aac']['header']['num_program_configs'] = 1 + getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  87. $bitoffset += 4;
  88. for ($i = 0; $i < $info['aac']['header']['num_program_configs']; $i++) {
  89. // http://www.audiocoding.com/wiki/index.php?page=program_config_element
  90. // buffer_fullness 20
  91. // element_instance_tag 4
  92. // object_type 2
  93. // sampling_frequency_index 4
  94. // num_front_channel_elements 4
  95. // num_side_channel_elements 4
  96. // num_back_channel_elements 4
  97. // num_lfe_channel_elements 2
  98. // num_assoc_data_elements 3
  99. // num_valid_cc_elements 4
  100. // mono_mixdown_present 1
  101. // mono_mixdown_element_number 4 if mono_mixdown_present == 1
  102. // stereo_mixdown_present 1
  103. // stereo_mixdown_element_number 4 if stereo_mixdown_present == 1
  104. // matrix_mixdown_idx_present 1
  105. // matrix_mixdown_idx 2 if matrix_mixdown_idx_present == 1
  106. // pseudo_surround_enable 1 if matrix_mixdown_idx_present == 1
  107. // for (i = 0; i < num_front_channel_elements; i++) {
  108. // front_element_is_cpe[i] 1
  109. // front_element_tag_select[i] 4
  110. // }
  111. // for (i = 0; i < num_side_channel_elements; i++) {
  112. // side_element_is_cpe[i] 1
  113. // side_element_tag_select[i] 4
  114. // }
  115. // for (i = 0; i < num_back_channel_elements; i++) {
  116. // back_element_is_cpe[i] 1
  117. // back_element_tag_select[i] 4
  118. // }
  119. // for (i = 0; i < num_lfe_channel_elements; i++) {
  120. // lfe_element_tag_select[i] 4
  121. // }
  122. // for (i = 0; i < num_assoc_data_elements; i++) {
  123. // assoc_data_element_tag_select[i] 4
  124. // }
  125. // for (i = 0; i < num_valid_cc_elements; i++) {
  126. // cc_element_is_ind_sw[i] 1
  127. // valid_cc_element_tag_select[i] 4
  128. // }
  129. // byte_alignment() VAR
  130. // comment_field_bytes 8
  131. // for (i = 0; i < comment_field_bytes; i++) {
  132. // comment_field_data[i] 8
  133. // }
  134. if (!$info['aac']['header']['is_vbr']) {
  135. $info['aac']['program_configs'][$i]['buffer_fullness'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 20));
  136. $bitoffset += 20;
  137. }
  138. $info['aac']['program_configs'][$i]['element_instance_tag'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  139. $bitoffset += 4;
  140. $info['aac']['program_configs'][$i]['object_type'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 2));
  141. $bitoffset += 2;
  142. $info['aac']['program_configs'][$i]['sampling_frequency_index'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  143. $bitoffset += 4;
  144. $info['aac']['program_configs'][$i]['num_front_channel_elements'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  145. $bitoffset += 4;
  146. $info['aac']['program_configs'][$i]['num_side_channel_elements'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  147. $bitoffset += 4;
  148. $info['aac']['program_configs'][$i]['num_back_channel_elements'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  149. $bitoffset += 4;
  150. $info['aac']['program_configs'][$i]['num_lfe_channel_elements'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 2));
  151. $bitoffset += 2;
  152. $info['aac']['program_configs'][$i]['num_assoc_data_elements'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 3));
  153. $bitoffset += 3;
  154. $info['aac']['program_configs'][$i]['num_valid_cc_elements'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  155. $bitoffset += 4;
  156. $info['aac']['program_configs'][$i]['mono_mixdown_present'] = (bool) getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 1));
  157. $bitoffset += 1;
  158. if ($info['aac']['program_configs'][$i]['mono_mixdown_present']) {
  159. $info['aac']['program_configs'][$i]['mono_mixdown_element_number'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  160. $bitoffset += 4;
  161. }
  162. $info['aac']['program_configs'][$i]['stereo_mixdown_present'] = (bool) getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 1));
  163. $bitoffset += 1;
  164. if ($info['aac']['program_configs'][$i]['stereo_mixdown_present']) {
  165. $info['aac']['program_configs'][$i]['stereo_mixdown_element_number'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  166. $bitoffset += 4;
  167. }
  168. $info['aac']['program_configs'][$i]['matrix_mixdown_idx_present'] = (bool) getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 1));
  169. $bitoffset += 1;
  170. if ($info['aac']['program_configs'][$i]['matrix_mixdown_idx_present']) {
  171. $info['aac']['program_configs'][$i]['matrix_mixdown_idx'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 2));
  172. $bitoffset += 2;
  173. $info['aac']['program_configs'][$i]['pseudo_surround_enable'] = (bool) getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 1));
  174. $bitoffset += 1;
  175. }
  176. for ($j = 0; $j < $info['aac']['program_configs'][$i]['num_front_channel_elements']; $j++) {
  177. $info['aac']['program_configs'][$i]['front_element_is_cpe'][$j] = (bool) getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 1));
  178. $bitoffset += 1;
  179. $info['aac']['program_configs'][$i]['front_element_tag_select'][$j] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  180. $bitoffset += 4;
  181. }
  182. for ($j = 0; $j < $info['aac']['program_configs'][$i]['num_side_channel_elements']; $j++) {
  183. $info['aac']['program_configs'][$i]['side_element_is_cpe'][$j] = (bool) getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 1));
  184. $bitoffset += 1;
  185. $info['aac']['program_configs'][$i]['side_element_tag_select'][$j] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  186. $bitoffset += 4;
  187. }
  188. for ($j = 0; $j < $info['aac']['program_configs'][$i]['num_back_channel_elements']; $j++) {
  189. $info['aac']['program_configs'][$i]['back_element_is_cpe'][$j] = (bool) getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 1));
  190. $bitoffset += 1;
  191. $info['aac']['program_configs'][$i]['back_element_tag_select'][$j] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  192. $bitoffset += 4;
  193. }
  194. for ($j = 0; $j < $info['aac']['program_configs'][$i]['num_lfe_channel_elements']; $j++) {
  195. $info['aac']['program_configs'][$i]['lfe_element_tag_select'][$j] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  196. $bitoffset += 4;
  197. }
  198. for ($j = 0; $j < $info['aac']['program_configs'][$i]['num_assoc_data_elements']; $j++) {
  199. $info['aac']['program_configs'][$i]['assoc_data_element_tag_select'][$j] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  200. $bitoffset += 4;
  201. }
  202. for ($j = 0; $j < $info['aac']['program_configs'][$i]['num_valid_cc_elements']; $j++) {
  203. $info['aac']['program_configs'][$i]['cc_element_is_ind_sw'][$j] = (bool) getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 1));
  204. $bitoffset += 1;
  205. $info['aac']['program_configs'][$i]['valid_cc_element_tag_select'][$j] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 4));
  206. $bitoffset += 4;
  207. }
  208. $bitoffset = ceil($bitoffset / 8) * 8;
  209. $info['aac']['program_configs'][$i]['comment_field_bytes'] = getid3_lib::Bin2Dec(substr($AACheaderBitstream, $bitoffset, 8));
  210. $bitoffset += 8;
  211. $info['aac']['program_configs'][$i]['comment_field'] = getid3_lib::Bin2String(substr($AACheaderBitstream, $bitoffset, 8 * $info['aac']['program_configs'][$i]['comment_field_bytes']));
  212. $bitoffset += 8 * $info['aac']['program_configs'][$i]['comment_field_bytes'];
  213. $info['aac']['header']['profile'] = self::AACprofileLookup($info['aac']['program_configs'][$i]['object_type'], $info['aac']['header']['mpeg_version']);
  214. $info['aac']['program_configs'][$i]['sampling_frequency'] = self::AACsampleRateLookup($info['aac']['program_configs'][$i]['sampling_frequency_index']);
  215. $info['audio']['sample_rate'] = $info['aac']['program_configs'][$i]['sampling_frequency'];
  216. $info['audio']['channels'] = self::AACchannelCountCalculate($info['aac']['program_configs'][$i]);
  217. if ($info['aac']['program_configs'][$i]['comment_field']) {
  218. $info['aac']['comments'][] = $info['aac']['program_configs'][$i]['comment_field'];
  219. }
  220. }
  221. $info['playtime_seconds'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['audio']['bitrate'];
  222. $info['audio']['encoder_options'] = $info['aac']['header_type'].' '.$info['aac']['header']['profile'];
  223. return true;
  224. } else {
  225. unset($info['fileformat']);
  226. unset($info['aac']);
  227. $info['error'][] = 'AAC-ADIF synch not found at offset '.$info['avdataoffset'].' (expected "ADIF", found "'.substr($AACheader, 0, 4).'" instead)';
  228. return false;
  229. }
  230. }
  231. public function getAACADTSheaderFilepointer($MaxFramesToScan=1000000, $ReturnExtendedInfo=false) {
  232. $info = &$this->getid3->info;
  233. // based loosely on code from AACfile by Jurgen Faul <jfaulØgmx.de>
  234. // http://jfaul.de/atl or http://j-faul.virtualave.net/atl/atl.html
  235. // http://faac.sourceforge.net/wiki/index.php?page=ADTS // dead link
  236. // http://wiki.multimedia.cx/index.php?title=ADTS
  237. // * ADTS Fixed Header: these don't change from frame to frame
  238. // syncword 12 always: '111111111111'
  239. // ID 1 0: MPEG-4, 1: MPEG-2
  240. // MPEG layer 2 If you send AAC in MPEG-TS, set to 0
  241. // protection_absent 1 0: CRC present; 1: no CRC
  242. // profile 2 0: AAC Main; 1: AAC LC (Low Complexity); 2: AAC SSR (Scalable Sample Rate); 3: AAC LTP (Long Term Prediction)
  243. // sampling_frequency_index 4 15 not allowed
  244. // private_bit 1 usually 0
  245. // channel_configuration 3
  246. // original/copy 1 0: original; 1: copy
  247. // home 1 usually 0
  248. // emphasis 2 only if ID == 0 (ie MPEG-4) // not present in some documentation?
  249. // * ADTS Variable Header: these can change from frame to frame
  250. // copyright_identification_bit 1
  251. // copyright_identification_start 1
  252. // aac_frame_length 13 length of the frame including header (in bytes)
  253. // adts_buffer_fullness 11 0x7FF indicates VBR
  254. // no_raw_data_blocks_in_frame 2
  255. // * ADTS Error check
  256. // crc_check 16 only if protection_absent == 0
  257. $byteoffset = $info['avdataoffset'];
  258. $framenumber = 0;
  259. // Init bit pattern array
  260. static $decbin = array();
  261. // Populate $bindec
  262. for ($i = 0; $i < 256; $i++) {
  263. $decbin[chr($i)] = str_pad(decbin($i), 8, '0', STR_PAD_LEFT);
  264. }
  265. // used to calculate bitrate below
  266. $BitrateCache = array();
  267. while (true) {
  268. // breaks out when end-of-file encountered, or invalid data found,
  269. // or MaxFramesToScan frames have been scanned
  270. if (!getid3_lib::intValueSupported($byteoffset)) {
  271. $info['warning'][] = 'Unable to parse AAC file beyond '.$this->ftell().' (PHP does not support file operations beyond '.round(PHP_INT_MAX / 1073741824).'GB)';
  272. return false;
  273. }
  274. $this->fseek($byteoffset);
  275. // First get substring
  276. $substring = $this->fread(9); // header is 7 bytes (or 9 if CRC is present)
  277. $substringlength = strlen($substring);
  278. if ($substringlength != 9) {
  279. $info['error'][] = 'Failed to read 7 bytes at offset '.($this->ftell() - $substringlength).' (only read '.$substringlength.' bytes)';
  280. return false;
  281. }
  282. // this would be easier with 64-bit math, but split it up to allow for 32-bit:
  283. $header1 = getid3_lib::BigEndian2Int(substr($substring, 0, 2));
  284. $header2 = getid3_lib::BigEndian2Int(substr($substring, 2, 4));
  285. $header3 = getid3_lib::BigEndian2Int(substr($substring, 6, 1));
  286. $info['aac']['header']['raw']['syncword'] = ($header1 & 0xFFF0) >> 4;
  287. if ($info['aac']['header']['raw']['syncword'] != 0x0FFF) {
  288. $info['error'][] = 'Synch pattern (0x0FFF) not found at offset '.($this->ftell() - $substringlength).' (found 0x0'.strtoupper(dechex($info['aac']['header']['raw']['syncword'])).' instead)';
  289. //if ($info['fileformat'] == 'aac') {
  290. // return true;
  291. //}
  292. unset($info['aac']);
  293. return false;
  294. }
  295. // Gather info for first frame only - this takes time to do 1000 times!
  296. if ($framenumber == 0) {
  297. $info['aac']['header_type'] = 'ADTS';
  298. $info['fileformat'] = 'aac';
  299. $info['audio']['dataformat'] = 'aac';
  300. $info['aac']['header']['raw']['mpeg_version'] = ($header1 & 0x0008) >> 3;
  301. $info['aac']['header']['raw']['mpeg_layer'] = ($header1 & 0x0006) >> 1;
  302. $info['aac']['header']['raw']['protection_absent'] = ($header1 & 0x0001) >> 0;
  303. $info['aac']['header']['raw']['profile_code'] = ($header2 & 0xC0000000) >> 30;
  304. $info['aac']['header']['raw']['sample_rate_code'] = ($header2 & 0x3C000000) >> 26;
  305. $info['aac']['header']['raw']['private_stream'] = ($header2 & 0x02000000) >> 25;
  306. $info['aac']['header']['raw']['channels_code'] = ($header2 & 0x01C00000) >> 22;
  307. $info['aac']['header']['raw']['original'] = ($header2 & 0x00200000) >> 21;
  308. $info['aac']['header']['raw']['home'] = ($header2 & 0x00100000) >> 20;
  309. $info['aac']['header']['raw']['copyright_stream'] = ($header2 & 0x00080000) >> 19;
  310. $info['aac']['header']['raw']['copyright_start'] = ($header2 & 0x00040000) >> 18;
  311. $info['aac']['header']['raw']['frame_length'] = ($header2 & 0x0003FFE0) >> 5;
  312. $info['aac']['header']['mpeg_version'] = ($info['aac']['header']['raw']['mpeg_version'] ? 2 : 4);
  313. $info['aac']['header']['crc_present'] = ($info['aac']['header']['raw']['protection_absent'] ? false: true);
  314. $info['aac']['header']['profile'] = self::AACprofileLookup($info['aac']['header']['raw']['profile_code'], $info['aac']['header']['mpeg_version']);
  315. $info['aac']['header']['sample_frequency'] = self::AACsampleRateLookup($info['aac']['header']['raw']['sample_rate_code']);
  316. $info['aac']['header']['private'] = (bool) $info['aac']['header']['raw']['private_stream'];
  317. $info['aac']['header']['original'] = (bool) $info['aac']['header']['raw']['original'];
  318. $info['aac']['header']['home'] = (bool) $info['aac']['header']['raw']['home'];
  319. $info['aac']['header']['channels'] = (($info['aac']['header']['raw']['channels_code'] == 7) ? 8 : $info['aac']['header']['raw']['channels_code']);
  320. if ($ReturnExtendedInfo) {
  321. $info['aac'][$framenumber]['copyright_id_bit'] = (bool) $info['aac']['header']['raw']['copyright_stream'];
  322. $info['aac'][$framenumber]['copyright_id_start'] = (bool) $info['aac']['header']['raw']['copyright_start'];
  323. }
  324. if ($info['aac']['header']['raw']['mpeg_layer'] != 0) {
  325. $info['warning'][] = 'Layer error - expected "0", found "'.$info['aac']['header']['raw']['mpeg_layer'].'" instead';
  326. }
  327. if ($info['aac']['header']['sample_frequency'] == 0) {
  328. $info['error'][] = 'Corrupt AAC file: sample_frequency == zero';
  329. return false;
  330. }
  331. $info['audio']['sample_rate'] = $info['aac']['header']['sample_frequency'];
  332. $info['audio']['channels'] = $info['aac']['header']['channels'];
  333. }
  334. $FrameLength = ($header2 & 0x0003FFE0) >> 5;
  335. if (!isset($BitrateCache[$FrameLength])) {
  336. $BitrateCache[$FrameLength] = ($info['aac']['header']['sample_frequency'] / 1024) * $FrameLength * 8;
  337. }
  338. getid3_lib::safe_inc($info['aac']['bitrate_distribution'][$BitrateCache[$FrameLength]], 1);
  339. $info['aac'][$framenumber]['aac_frame_length'] = $FrameLength;
  340. $info['aac'][$framenumber]['adts_buffer_fullness'] = (($header2 & 0x0000001F) << 6) & (($header3 & 0xFC) >> 2);
  341. if ($info['aac'][$framenumber]['adts_buffer_fullness'] == 0x07FF) {
  342. $info['audio']['bitrate_mode'] = 'vbr';
  343. } else {
  344. $info['audio']['bitrate_mode'] = 'cbr';
  345. }
  346. $info['aac'][$framenumber]['num_raw_data_blocks'] = (($header3 & 0x03) >> 0);
  347. if ($info['aac']['header']['crc_present']) {
  348. //$info['aac'][$framenumber]['crc'] = getid3_lib::BigEndian2Int(substr($substring, 7, 2);
  349. }
  350. if (!$ReturnExtendedInfo) {
  351. unset($info['aac'][$framenumber]);
  352. }
  353. /*
  354. $rounded_precision = 5000;
  355. $info['aac']['bitrate_distribution_rounded'] = array();
  356. foreach ($info['aac']['bitrate_distribution'] as $bitrate => $count) {
  357. $rounded_bitrate = round($bitrate / $rounded_precision) * $rounded_precision;
  358. getid3_lib::safe_inc($info['aac']['bitrate_distribution_rounded'][$rounded_bitrate], $count);
  359. }
  360. ksort($info['aac']['bitrate_distribution_rounded']);
  361. */
  362. $byteoffset += $FrameLength;
  363. if ((++$framenumber < $MaxFramesToScan) && (($byteoffset + 10) < $info['avdataend'])) {
  364. // keep scanning
  365. } else {
  366. $info['aac']['frames'] = $framenumber;
  367. $info['playtime_seconds'] = ($info['avdataend'] / $byteoffset) * (($framenumber * 1024) / $info['aac']['header']['sample_frequency']); // (1 / % of file scanned) * (samples / (samples/sec)) = seconds
  368. if ($info['playtime_seconds'] == 0) {
  369. $info['error'][] = 'Corrupt AAC file: playtime_seconds == zero';
  370. return false;
  371. }
  372. $info['audio']['bitrate'] = (($info['avdataend'] - $info['avdataoffset']) * 8) / $info['playtime_seconds'];
  373. ksort($info['aac']['bitrate_distribution']);
  374. $info['audio']['encoder_options'] = $info['aac']['header_type'].' '.$info['aac']['header']['profile'];
  375. return true;
  376. }
  377. }
  378. // should never get here.
  379. }
  380. public static function AACsampleRateLookup($samplerateid) {
  381. static $AACsampleRateLookup = array();
  382. if (empty($AACsampleRateLookup)) {
  383. $AACsampleRateLookup[0] = 96000;
  384. $AACsampleRateLookup[1] = 88200;
  385. $AACsampleRateLookup[2] = 64000;
  386. $AACsampleRateLookup[3] = 48000;
  387. $AACsampleRateLookup[4] = 44100;
  388. $AACsampleRateLookup[5] = 32000;
  389. $AACsampleRateLookup[6] = 24000;
  390. $AACsampleRateLookup[7] = 22050;
  391. $AACsampleRateLookup[8] = 16000;
  392. $AACsampleRateLookup[9] = 12000;
  393. $AACsampleRateLookup[10] = 11025;
  394. $AACsampleRateLookup[11] = 8000;
  395. $AACsampleRateLookup[12] = 0;
  396. $AACsampleRateLookup[13] = 0;
  397. $AACsampleRateLookup[14] = 0;
  398. $AACsampleRateLookup[15] = 0;
  399. }
  400. return (isset($AACsampleRateLookup[$samplerateid]) ? $AACsampleRateLookup[$samplerateid] : 'invalid');
  401. }
  402. public static function AACprofileLookup($profileid, $mpegversion) {
  403. static $AACprofileLookup = array();
  404. if (empty($AACprofileLookup)) {
  405. $AACprofileLookup[2][0] = 'Main profile';
  406. $AACprofileLookup[2][1] = 'Low Complexity profile (LC)';
  407. $AACprofileLookup[2][2] = 'Scalable Sample Rate profile (SSR)';
  408. $AACprofileLookup[2][3] = '(reserved)';
  409. $AACprofileLookup[4][0] = 'AAC_MAIN';
  410. $AACprofileLookup[4][1] = 'AAC_LC';
  411. $AACprofileLookup[4][2] = 'AAC_SSR';
  412. $AACprofileLookup[4][3] = 'AAC_LTP';
  413. }
  414. return (isset($AACprofileLookup[$mpegversion][$profileid]) ? $AACprofileLookup[$mpegversion][$profileid] : 'invalid');
  415. }
  416. public static function AACchannelCountCalculate($program_configs) {
  417. $channels = 0;
  418. for ($i = 0; $i < $program_configs['num_front_channel_elements']; $i++) {
  419. $channels++;
  420. if ($program_configs['front_element_is_cpe'][$i]) {
  421. // each front element is channel pair (CPE = Channel Pair Element)
  422. $channels++;
  423. }
  424. }
  425. for ($i = 0; $i < $program_configs['num_side_channel_elements']; $i++) {
  426. $channels++;
  427. if ($program_configs['side_element_is_cpe'][$i]) {
  428. // each side element is channel pair (CPE = Channel Pair Element)
  429. $channels++;
  430. }
  431. }
  432. for ($i = 0; $i < $program_configs['num_back_channel_elements']; $i++) {
  433. $channels++;
  434. if ($program_configs['back_element_is_cpe'][$i]) {
  435. // each back element is channel pair (CPE = Channel Pair Element)
  436. $channels++;
  437. }
  438. }
  439. for ($i = 0; $i < $program_configs['num_lfe_channel_elements']; $i++) {
  440. $channels++;
  441. }
  442. return $channels;
  443. }
  444. }