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

Commit ed92d571 authored by Stanley Tng's avatar Stanley Tng Committed by android-build-merger
Browse files

Merge "Add more Hearing Aid Profile logs"

am: 5b6d6f10

Change-Id: I7d555fa8dafa0aed8c59c32cad98eae5adceb718
parents 8fa89bc7 5b6d6f10
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1680,6 +1680,8 @@ static void adev_close_output_stream(struct audio_hw_device* dev,
  struct a2dp_audio_device* a2dp_dev = (struct a2dp_audio_device*)dev;
  struct a2dp_stream_out* out = (struct a2dp_stream_out*)stream;

  INFO("%s: state %d", __func__, out->common.state);

  // prevent interference with adev_set_parameters.
  std::lock_guard<std::recursive_mutex> lock(*a2dp_dev->mutex);
  {
+4 −3
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ void hearing_aid_recv_ctrl_data() {
    return;
  }

  VLOG(2) << __func__ << " " << audio_ha_hw_dump_ctrl_event(cmd);
  LOG(INFO) << __func__ << " " << audio_ha_hw_dump_ctrl_event(cmd);
  //  a2dp_cmd_pending = cmd;

  switch (cmd) {
@@ -248,7 +248,8 @@ void hearing_aid_recv_ctrl_data() {
      hearing_aid_send_ack(HEARING_AID_CTRL_ACK_FAILURE);
      break;
  }
  VLOG(2) << __func__ << " a2dp-ctrl-cmd : " << audio_ha_hw_dump_ctrl_event(cmd)
  LOG(INFO) << __func__
            << " a2dp-ctrl-cmd : " << audio_ha_hw_dump_ctrl_event(cmd)
            << " DONE";
}