Nomad Engineer

Android AudioTrack 본문

개발/안드로이드

Android AudioTrack

universehan 2021. 1. 24. 07:29
An AudioTrack instance can operate under two modes: static or streaming.
In Streaming mode, the application writes a continuous stream of data to the AudioTrack, using one of the write() methods. These are blocking and return when the data has been transferred from the Java layer to the native layer and queued for playback.

write로 Java 레이어 에서 Native 레이어로 전송된 데이터는 정확히 어느 시점에 재생되어 얼마의 시간후에 우리의 귀에 들리게 되는걸까?

 

Upon creation, an AudioTrack object initializes its associated audio buffer. The size of this buffer, specified during the construction, determines how long an AudioTrack can play before running out of data.

오디오 트랙을 생성하는 순간 이와 연관된 오디오 버퍼가 만들어 진다고 한다. 그럼 한가지 궁굼한 점이 생기는데. MediaPlayer에서는 저 오디오 버퍼가 언제 만들어 질까? creation일까? prepare? start? 한번 코드를 살펴봐야 겠다.

반응형