Loading hal/audio_hw.c +1 −1 Original line number Diff line number Diff line Loading @@ -5067,7 +5067,7 @@ static int out_get_mmap_position(const struct audio_stream_out *stream, ALOGE("%s: %s", __func__, pcm_get_error(out->pcm)); return ret; } position->time_nanoseconds = ts.tv_sec*1000000000L + ts.tv_nsec; position->time_nanoseconds = ts.tv_sec*1000000000LL + ts.tv_nsec; return 0; } Loading Loading
hal/audio_hw.c +1 −1 Original line number Diff line number Diff line Loading @@ -5067,7 +5067,7 @@ static int out_get_mmap_position(const struct audio_stream_out *stream, ALOGE("%s: %s", __func__, pcm_get_error(out->pcm)); return ret; } position->time_nanoseconds = ts.tv_sec*1000000000L + ts.tv_nsec; position->time_nanoseconds = ts.tv_sec*1000000000LL + ts.tv_nsec; return 0; } Loading