Skip to content

Commit

Permalink
Fix the AudioTrack thread name (#3798)
Browse files Browse the repository at this point in the history
b/350737545
  • Loading branch information
y4vor authored Jul 9, 2024
1 parent b403700 commit bf2e706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starboard/android/shared/audio_track_audio_sink_type.cc
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void AudioTrackAudioSink::SetPlaybackRate(double playback_rate) {

// static
void* AudioTrackAudioSink::ThreadEntryPoint(void* context) {
pthread_setname_np(pthread_self(), "audio_track_audio_out");
pthread_setname_np(pthread_self(), "audio_track_out");
SB_DCHECK(context);
::starboard::shared::pthread::ThreadSetPriority(kSbThreadPriorityRealTime);

Expand Down

0 comments on commit bf2e706

Please sign in to comment.