summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormplayer-svn <svn@mplayerhq.hu>2011-11-14 19:09:35 +0000
committerwm4 <wm4@nowhere>2012-08-03 01:34:25 +0200
commit94c34b95aa06b91aa70d2220c5a9c5d6649cde92 (patch)
treea02afb3991c46047858df8caae0ddc49e39fd072
parentaf6ac8ef5eb4e65bc9a5f46bbddd6d9862226bbb (diff)
downloadmpv-94c34b95aa06b91aa70d2220c5a9c5d6649cde92.tar.bz2
mpv-94c34b95aa06b91aa70d2220c5a9c5d6649cde92.tar.xz
af: some spelling/grammar fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34349 b3059339-0415-0410-9bf9-f77b7e298cf2 Author: reimar
-rw-r--r--libaf/af.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libaf/af.c b/libaf/af.c
index bc7a92a56b..b60e572bb4 100644
--- a/libaf/af.c
+++ b/libaf/af.c
@@ -346,7 +346,7 @@ int af_reinit(af_stream_t* s, af_instance_t* af)
}
if(!new){ // Should _never_ happen
mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Unable to correct audio format. "
- "This error should never uccur, please send bugreport.\n");
+ "This error should never occur, please send a bug report.\n");
return AF_ERROR;
}
af=new->next;
@@ -560,7 +560,7 @@ int af_init(af_stream_t* s)
if (AF_OK != fixup_output_format(s)) {
// Something is stuffed audio out will not work
mp_msg(MSGT_AFILTER, MSGL_ERR, "[libaf] Unable to setup filter system can not"
- " meet sound-card demands, please send bugreport. \n");
+ " meet sound-card demands, please send a bug report. \n");
af_uninit(s);
return -1;
}
@@ -577,7 +577,7 @@ af_instance_t* af_add(af_stream_t* s, char* name){
// Sanity check
if(!s || !s->first || !name)
return NULL;
- // Insert the filter somwhere nice
+ // Insert the filter somewhere nice
if(!strcmp(s->first->info->name,"format"))
new = af_append(s, s->first, name);
else