From: Christian Strømme Date: Thu, 12 Sep 2013 13:27:44 +0000 (+0200) Subject: OpenSL: Fix typos X-Git-Tag: upstream/5.2.95+rc1~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef644626968703ae92ed0264fef8078c849a61fd;p=platform%2Fupstream%2Fqtmultimedia.git OpenSL: Fix typos Change-Id: I1a293bbf8ad3d9016ff6a7ec816c33d3303e5959 Reviewed-by: Yoann Lopes --- diff --git a/src/plugins/opensles/qopenslesaudiooutput.cpp b/src/plugins/opensles/qopenslesaudiooutput.cpp index 908e299..65c0f5a 100644 --- a/src/plugins/opensles/qopenslesaudiooutput.cpp +++ b/src/plugins/opensles/qopenslesaudiooutput.cpp @@ -129,7 +129,7 @@ void QOpenSLESAudioOutput::start(QIODevice *device) m_processedBytes += readSize; } - // Change to state to playing. + // Change the state to playing. // We need to do this after filling the buffers or processedBytes might get corrupted. if (SL_RESULT_SUCCESS != (*m_playItf)->SetPlayState(m_playItf, SL_PLAYSTATE_PLAYING)) { setError(QAudio::FatalError); @@ -149,7 +149,7 @@ QIODevice *QOpenSLESAudioOutput::start() m_audioSource = new SLIODevicePrivate(this); m_audioSource->open(QIODevice::WriteOnly | QIODevice::Unbuffered); - // Change to state to playing + // Change the state to playing if (SL_RESULT_SUCCESS != (*m_playItf)->SetPlayState(m_playItf, SL_PLAYSTATE_PLAYING)) { setError(QAudio::FatalError); destroyPlayer();