audio_core: hle: mf: address another batch of reviews from @B3N30

This commit is contained in:
liushuyu
2019-01-05 22:28:56 -07:00
committed by B3N30
parent 7f5b54fda4
commit c03861c2d9
6 changed files with 39 additions and 43 deletions

View File

@ -4,7 +4,7 @@
#include "adts.h"
constexpr std::array<u32, 16> freq_table = {96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050,
16000, 12000, 11025, 8000, 7350, 0, 0, 0};
16000, 12000, 11025, 8000, 7350, 0, 0, 0};
constexpr std::array<u8, 8> channel_table = {0, 1, 2, 3, 4, 5, 6, 8};
u32 parse_adts(char* buffer, struct ADTSData* out) {