Browse Source

aaudio: use LogAAudioError

To convert the result to a string.
pull/144/head
Thomas Guillem 3 years ago
committed by Jean-Baptiste Kempf
parent
commit
65c3634eb0
  1. 2
      modules/audio_output/android/aaudio.c

2
modules/audio_output/android/aaudio.c

@ -331,7 +331,7 @@ GetFrameTimestampLocked(aout_stream_t *stream, int64_t *pos_frames,
pos_frames, &time_ns);
if (result != AAUDIO_OK)
{
msg_Err(stream, "AAudioStream_getTimestamp failed: %d", result);
LogAAudioError(stream, "AAudioStream_getTimestamp failed", result);
return VLC_EGENERIC;
}
if (*pos_frames <= 0)

Loading…
Cancel
Save