Skip to content

Commit

Permalink
ao/aaudio: implement aaudio backend for android
Browse files Browse the repository at this point in the history
  • Loading branch information
jambonmcyeah committed Feb 11, 2025
1 parent 9ef1943 commit 4349871
Show file tree
Hide file tree
Showing 4 changed files with 435 additions and 0 deletions.
4 changes: 4 additions & 0 deletions audio/out/ao.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,16 @@ extern const struct ao_driver audio_out_wasapi;
extern const struct ao_driver audio_out_pcm;
extern const struct ao_driver audio_out_lavc;
extern const struct ao_driver audio_out_sdl;
extern const struct ao_driver audio_out_aaudio;

static const struct ao_driver * const audio_out_drivers[] = {
// native:
#if HAVE_AUDIOTRACK
&audio_out_audiotrack,
#endif
#if HAVE_AAUDIO
&audio_out_aaudio,
#endif
#if HAVE_AUDIOUNIT
&audio_out_audiounit,
#endif
Expand Down
Loading

0 comments on commit 4349871

Please sign in to comment.