Mercurial > mplayer.hg
comparison libaf/af.c @ 8711:906f7a2dc085
sig 11 fix in reinit and resample + spelling error fixes
author | anders |
---|---|
date | Thu, 02 Jan 2003 03:00:44 +0000 |
parents | db0810dcab33 |
children | a1578b329cc0 |
comparison
equal
deleted
inserted
replaced
8710:ba369c754b36 | 8711:906f7a2dc085 |
---|---|
285 " filter '%s' returned error code %i\n",af->info->name,rv); | 285 " filter '%s' returned error code %i\n",af->info->name,rv); |
286 return AF_ERROR; | 286 return AF_ERROR; |
287 } | 287 } |
288 // Check if there are any filters left in the list | 288 // Check if there are any filters left in the list |
289 if(NULL == af){ | 289 if(NULL == af){ |
290 if(!af_append(s,s->first,"dummy")) | 290 if(!(af=af_append(s,s->first,"dummy"))) |
291 return -1; | 291 return -1; |
292 } | 292 } |
293 else | 293 else |
294 af=af->next; | 294 af=af->next; |
295 }while(af); | 295 }while(af); |