1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-27 17:42:17 +00:00

af: some spelling/grammar fixes

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34349 b3059339-0415-0410-9bf9-f77b7e298cf2
Author: reimar
This commit is contained in:
mplayer-svn 2011-11-14 19:09:35 +00:00 committed by wm4
parent af6ac8ef5e
commit 94c34b95aa

View File

@ -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