Loading hal/audio_hw.c +1 −1 Original line number Diff line number Diff line Loading @@ -5833,7 +5833,7 @@ static int in_get_mmap_position(const struct audio_stream_in *stream, ALOGE("%s: %s", __func__, pcm_get_error(in->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 @@ -5833,7 +5833,7 @@ static int in_get_mmap_position(const struct audio_stream_in *stream, ALOGE("%s: %s", __func__, pcm_get_error(in->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