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

Commit 86e1713c authored by Eric Laurent's avatar Eric Laurent
Browse files

audio: enable AAC offload

Bug: 8174410.
Change-Id: I343a35b90a2b21ea7954856ac7f73b9f5a07e0f2
parent 2ccd7bab
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -127,8 +127,8 @@ static const struct string_to_enum out_channels_name_to_enum_table[] = {

static bool is_supported_format(audio_format_t format)
{
    if (format == AUDIO_FORMAT_MP3 /*||
        format == AUDIO_FORMAT_AAC */)
    if (format == AUDIO_FORMAT_MP3 ||
            format == AUDIO_FORMAT_AAC)
        return true;

    return false;