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

Commit da045b8f authored by Eric Laurent's avatar Eric Laurent Committed by Android (Google) Code Review
Browse files

Merge "audio HAL: add parameters to open stream functions" into lmp-dev

parents 02afb9ee c742ef27
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1003,7 +1003,8 @@ static int adev_open_output_stream(struct audio_hw_device *dev,
                                   audio_devices_t devices,
                                   audio_output_flags_t flags,
                                   struct audio_config *config,
                                   struct audio_stream_out **stream_out)
                                   struct audio_stream_out **stream_out,
                                   const char *address __unused)

{
    struct a2dp_audio_device *a2dp_dev = (struct a2dp_audio_device *)dev;
@@ -1202,7 +1203,9 @@ static int adev_open_input_stream(struct audio_hw_device *dev,
                                  audio_devices_t devices,
                                  struct audio_config *config,
                                  struct audio_stream_in **stream_in,
                                  audio_input_flags_t flags __unused)
                                  audio_input_flags_t flags __unused,
                                  const char *address __unused,
                                  audio_source_t source __unused)
{
    struct a2dp_audio_device *a2dp_dev = (struct a2dp_audio_device *)dev;
    struct a2dp_stream_in *in;