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

Commit 691ebfea authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge changes from topic "aosp-hal-enum-strings"

* changes:
  Fix channel mask for the EARPIECE in example APM config
  Fix buildCommonTypesStructureFile.py script
  Use system/audio to/from string converters in TypeConverter
parents ea8fec6c 46f16a9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
#include "core/AudioGlobal.h"
#include <aaudio/AAudioTesting.h>
#include <math.h>
#include <system/audio-base.h>
#include <system/audio.h>
#include <assert.h>

#include "utility/AAudioUtilities.h"
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ bool stringToStreamType(const char *streamName, Type* type)

template <>
bool stringToStreamType(const char *streamName, audio_devices_t* type) {
    return deviceFromString(streamName, *type);
    return DeviceConverter::fromString(streamName, *type);
}

/** Parse a library xml note and push the result in libraries or return false on failure. */
+7 −0
Original line number Diff line number Diff line
{
  "presubmit": [
    {
      "name": "libmedia_helper_tests"
    }
  ]
}
+9 −376

File changed.

Preview size limit exceeded, changes collapsed.

+267 −56

File changed.

Preview size limit exceeded, changes collapsed.

Loading