mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
audio: return EINVAL to avoid get_presentation_position spamming logs
Change-Id: I32ec0c5651395c7af3dc4b80d25204bf0fcc1977
This commit is contained in:
parent
d5b988f3b2
commit
5869cd357e
1 changed files with 1 additions and 2 deletions
|
@ -3303,7 +3303,7 @@ static int out_get_presentation_position(const struct audio_stream_out *stream,
|
||||||
uint64_t *frames, struct timespec *timestamp)
|
uint64_t *frames, struct timespec *timestamp)
|
||||||
{
|
{
|
||||||
struct stream_out *out = (struct stream_out *)stream;
|
struct stream_out *out = (struct stream_out *)stream;
|
||||||
int ret = -1;
|
int ret = -EINVAL;
|
||||||
|
|
||||||
lock_output_stream(out);
|
lock_output_stream(out);
|
||||||
|
|
||||||
|
@ -3342,7 +3342,6 @@ static int out_get_presentation_position(const struct audio_stream_out *stream,
|
||||||
ret = 0;
|
ret = 0;
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
ret = -1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue