Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da7411a0 authored by vivek mehta's avatar vivek mehta Committed by Gerrit - the friendly Code Review server
Browse files

audio: usb: add support for additional sample rate

- add 352800 sample rate in supported sample rate list

Change-Id: Ibb72d31ff7cc373a8d301efb5c7b52596a15e3ed
CRs-Fixed: 2018775
parent 9931e788
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@
#define SAMPLE_RATE_11025         11025
// Supported sample rates for USB
static uint32_t supported_sample_rates[] =
    {44100, 48000, 64000, 88200, 96000, 176400, 192000, 384000};
    {44100, 48000, 64000, 88200, 96000, 176400, 192000, 352800, 384000};

#define  MAX_SAMPLE_RATE_SIZE  sizeof(supported_sample_rates)/sizeof(supported_sample_rates[0])