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

Commit b476ae24 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11324029 from 5b93e0b9 to 24Q2-release

Change-Id: Iff734e7b52539351508a72ea26da2fecee8bf440
parents f4b8e55b 5b93e0b9
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
.vscode/

# Vim temporary files
**/*.swp
+1 −2
Original line number Diff line number Diff line
@@ -222,10 +222,9 @@ void EvsVideoEmulatedCamera::onCodecOutputAvailable(const int32_t index,

    // Lock our output buffer for writing
    uint8_t* pixels = nullptr;
    int32_t bytesPerStride = 0;
    auto& mapper = ::android::GraphicBufferMapper::get();
    mapper.lock(renderBufferHandle, GRALLOC_USAGE_SW_WRITE_OFTEN | GRALLOC_USAGE_SW_READ_NEVER,
                ::android::Rect(mWidth, mHeight), (void**)&pixels, nullptr, &bytesPerStride);
                ::android::Rect(mWidth, mHeight), (void**)&pixels);

    // If we failed to lock the pixel buffer, we're about to crash, but log it first
    if (!pixels) {
+3 −3
Original line number Diff line number Diff line
@@ -34,13 +34,13 @@
package android.hardware.bluetooth.ranging;
@VintfStability
parcelable ChannelSoundingSingleSideData {
  @nullable List<android.hardware.bluetooth.ranging.StepTonePct> stepTonePcts;
  @nullable android.hardware.bluetooth.ranging.StepTonePct[] stepTonePcts;
  @nullable byte[] packetQuality;
  @nullable byte[] packetRssiDbm;
  @nullable android.hardware.bluetooth.ranging.Nadm[] packetNadm;
  @nullable int[] measuredFreqOffset;
  @nullable List<android.hardware.bluetooth.ranging.ComplexNumber> packetPct1;
  @nullable List<android.hardware.bluetooth.ranging.ComplexNumber> packetPct2;
  @nullable android.hardware.bluetooth.ranging.ComplexNumber[] packetPct1;
  @nullable android.hardware.bluetooth.ranging.ComplexNumber[] packetPct2;
  byte referencePowerDbm;
  @nullable byte[] vendorSpecificCsSingleSidedata;
}
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.bluetooth.ranging;
@Backing(type="int") @VintfStability
@Backing(type="byte") @VintfStability
enum ModeType {
  ZERO = 0x00,
  ONE = 0x01,
+2 −2
Original line number Diff line number Diff line
@@ -32,10 +32,10 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.bluetooth.ranging;
@Backing(type="int") @VintfStability
@Backing(type="byte") @VintfStability
enum SubModeType {
  ONE = 0x01,
  TWO = 0x02,
  THREE = 0x03,
  UNUSED = 0xff,
  UNUSED = 0xffu8,
}
Loading