diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-22 01:06:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-22 01:06:57 +0000 |
commit | d9526386990bccd61d8773e993e47fceb55b0174 (patch) | |
tree | ec1e3ead18f9261a01589001e89072546d33ede9 /libavcodec/resample2.c | |
parent | 4edfceccec5a4f5f62415904dd008a2ab23f5d83 (diff) | |
download | ffmpeg-d9526386990bccd61d8773e993e47fceb55b0174.tar.gz |
typo: occured --> occurred
Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/resample2.c')
-rw-r--r-- | libavcodec/resample2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/resample2.c b/libavcodec/resample2.c index da1443d98f..ed59448a49 100644 --- a/libavcodec/resample2.c +++ b/libavcodec/resample2.c @@ -208,7 +208,7 @@ void av_resample_close(AVResampleContext *c){ /** * Compensates samplerate/timestamp drift. The compensation is done by changing - * the resampler parameters, so no audible clicks or similar distortions ocur + * the resampler parameters, so no audible clicks or similar distortions occur * @param compensation_distance distance in output samples over which the compensation should be performed * @param sample_delta number of output samples which should be output less * @@ -231,7 +231,7 @@ void av_resample_compensate(AVResampleContext *c, int sample_delta, int compensa * @param src_size the number of unconsumed samples available * @param dst_size the amount of space in samples available in dst * @param update_ctx if this is 0 then the context wont be modified, that way several channels can be resampled with the same context - * @return the number of samples written in dst or -1 if an error occured + * @return the number of samples written in dst or -1 if an error occurred */ int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){ int dst_index, i; |