설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

module.audio.aac.php 25KB

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