From a47c3bec6ddd5294433fd0c28f9912c9f0135f69 Mon Sep 17 00:00:00 2001
From: reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>
Date: Sat, 1 Dec 2007 13:35:25 +0000
Subject: [PATCH] Fix typos in comments to stop them hurting my eyes

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25225 b3059339-0415-0410-9bf9-f77b7e298cf2
---
 libmpdemux/demuxer.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/libmpdemux/demuxer.c b/libmpdemux/demuxer.c
index df90a626aa..90fc4b9296 100644
--- a/libmpdemux/demuxer.c
+++ b/libmpdemux/demuxer.c
@@ -375,7 +375,7 @@ int demux_fill_buffer(demuxer_t *demux,demux_stream_t *ds){
 
 // return value:
 //     0 = EOF
-//     1 = succesfull
+//     1 = successful
 int ds_fill_buffer(demux_stream_t *ds){
   demuxer_t *demux=ds->demuxer;
   if(ds->current) free_demux_packet(ds->current);
@@ -659,12 +659,12 @@ int correct_pts=0;
 /*
   NOTE : Several demuxers may be opened at the same time so
   demuxers should NEVER rely on an external var to enable them
-  self. If a demuxer can't do any autodection it should only use
-  file_format. The user can explictly set file_format with the -demuxer
+  self. If a demuxer can't do any auto-detection it should only use
+  file_format. The user can explicitly set file_format with the -demuxer
   option so there is really no need for another extra var.
-  For conivence an option can be added to set file_format directly
+  For convenience an option can be added to set file_format directly
   to the right type (ex: rawaudio,rawvideo).
-  Also the stream can override the file_format so a demuxer wich rely
+  Also the stream can override the file_format so a demuxer which rely
   on a special stream type can set file_format at the stream level
   (ex: tv,mf).
 */