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

Commit a8874acd authored by Łukasz Rymanowski's avatar Łukasz Rymanowski
Browse files

leaudio: Remove not needed group stream API

With the seemless audio start we don't need this API anymore

Bug: 150670922
Tag: #feature
Sponsor: jpawlowski@
Test: compile
Change-Id: Ib8b369afb6a3802e9e29aa63dc574733fd397034
parent e9cdb534
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -78,13 +78,6 @@ class LeAudioClientInterfaceImpl : public LeAudioClientInterface,

  void Disconnect(const RawAddress& address) override {}

  void GroupStream(const uint8_t group_id,
                   const uint16_t content_type) override {}

  void GroupSuspend(const uint8_t group_id) override {}

  void GroupStop(const uint8_t group_id) override {}

 private:
  LeAudioClientCallbacks* callbacks;
};
+0 −9
Original line number Diff line number Diff line
@@ -86,15 +86,6 @@ class LeAudioClientInterface {

  /* Cleanup the LeAudio */
  virtual void Cleanup(void) = 0;

  /* Request to stream audio */
  virtual void GroupStream(uint8_t group_id, uint16_t content_type) = 0;

  /* Request to suspend audio */
  virtual void GroupSuspend(uint8_t group_id) = 0;

  /* Request to stop streaming audio */
  virtual void GroupStop(uint8_t group_id) = 0;
};

static constexpr uint8_t INSTANCE_ID_UNDEFINED = 0xFF;