Revert "os: reset Audio_out stream prior to calling start"

This reverts commit d8b95c263b.

Some clients might want to fiddle with the clients play position
(e.g. the mixer) within 'Audio_out::start()' and we might reset
it to an old value if we do it afterwards.

Fixes #1796.
This commit is contained in:
Josef Söntgen 2015-11-25 18:56:12 +01:00 committed by Christian Helmuth
parent 6d1e417250
commit 627ecc44d2
1 changed files with 2 additions and 2 deletions

View File

@ -91,10 +91,10 @@ class Audio_out::Session_client : public Genode::Rpc_client<Session>
void start()
{
call<Rpc_start>();
/* reset tail pointer */
stream()->reset();
call<Rpc_start>();
}
void stop() { call<Rpc_stop>(); }