[vlc-commits] audio_output: fix spelling mistakes
Eric Engestrom
git at videolan.org
Sat Apr 2 17:13:32 CEST 2016
vlc | branch: master | Eric Engestrom <eric at engestrom.ch> | Sat Apr 2 15:50:38 2016 +0100| [9df159b874decd634896374b6f1ef943fca6c0e1] | committer: Rémi Denis-Courmont
audio_output: fix spelling mistakes
Signed-off-by: Eric Engestrom <eric at engestrom.ch>
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9df159b874decd634896374b6f1ef943fca6c0e1
---
src/audio_output/output.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/audio_output/output.c b/src/audio_output/output.c
index d3c1bb9..c958215 100644
--- a/src/audio_output/output.c
+++ b/src/audio_output/output.c
@@ -451,7 +451,7 @@ int aout_OutputNew (audio_output_t *aout, audio_sample_format_t *restrict fmt)
/**
* Stops the audio output stream (undoes aout_OutputNew()).
- * \note This can only be called after a succesful aout_OutputNew().
+ * \note This can only be called after a successful aout_OutputNew().
* \warning The caller must hold the audio output lock.
*/
void aout_OutputDelete (audio_output_t *aout)
@@ -474,7 +474,7 @@ int aout_OutputTimeGet (audio_output_t *aout, mtime_t *delay)
/**
* Plays a decoded audio buffer.
- * \note This can only be called after a succesful aout_OutputNew().
+ * \note This can only be called after a successful aout_OutputNew().
* \warning The caller must hold the audio output lock.
*/
void aout_OutputPlay (audio_output_t *aout, block_t *block)
@@ -494,7 +494,7 @@ static void PauseDefault (audio_output_t *aout, bool pause, mtime_t date)
* Notifies the audio output (if any) of pause/resume events.
* This enables the output to expedite pause, instead of waiting for its
* buffers to drain.
- * \note This can only be called after a succesful aout_OutputNew().
+ * \note This can only be called after a successful aout_OutputNew().
* \warning The caller must hold the audio output lock.
*/
void aout_OutputPause( audio_output_t *aout, bool pause, mtime_t date )
@@ -508,7 +508,7 @@ void aout_OutputPause( audio_output_t *aout, bool pause, mtime_t date )
* This enables the output to expedite seek and stop.
* \param wait if true, wait for buffer playback (i.e. drain),
* if false, discard the buffers immediately (i.e. flush)
- * \note This can only be called after a succesful aout_OutputNew().
+ * \note This can only be called after a successful aout_OutputNew().
* \warning The caller must hold the audio output lock.
*/
void aout_OutputFlush( audio_output_t *aout, bool wait )
More information about the vlc-commits
mailing list