Make WordPress Core

Ticket #47751: 47751-remaining-getid3.diff

File 47751-remaining-getid3.diff, 1.1 KB (added by desrosj, 5 years ago)
  • src/wp-includes/ID3/getid3.php

     
    250250         */
    251251        protected $startup_warning = '';
    252252
    253         const VERSION           = '1.9.17-201907240906';
     253        const VERSION           = '1.9.18-201907240906';
    254254        const FREAD_BUFFER_SIZE = 32768;
    255255
    256256        const ATTACHMENTS_NONE   = false;
  • src/wp-includes/ID3/module.audio-video.matroska.php

     
    342342                                                switch ($trackarray['CodecID']) {
    343343                                                        case 'A_PCM/INT/LIT':
    344344                                                        case 'A_PCM/INT/BIG':
    345                                                                 $track_info['bitrate'] = $trackarray['SamplingFrequency'] * $trackarray['Channels'] * $trackarray['BitDepth'];
     345                                                                $track_info['bitrate'] = $track_info['sample_rate'] * $track_info['channels'] * $trackarray['BitDepth'];
    346346                                                                break;
    347347
    348348                                                        case 'A_AC3':