comparison resample2.c @ 7377:3f819263176e libavcodec

cosmetics: Fix two common typos: wont --> will not, lets --> let us.
author diego
date Thu, 24 Jul 2008 17:09:28 +0000
parents 01647ac078a7
children e9d9d946f213
comparison
equal deleted inserted replaced
7376:5f3b62eaf6e5 7377:3f819263176e
228 * resamples. 228 * resamples.
229 * @param src an array of unconsumed samples 229 * @param src an array of unconsumed samples
230 * @param consumed the number of samples of src which have been consumed are returned here 230 * @param consumed the number of samples of src which have been consumed are returned here
231 * @param src_size the number of unconsumed samples available 231 * @param src_size the number of unconsumed samples available
232 * @param dst_size the amount of space in samples available in dst 232 * @param dst_size the amount of space in samples available in dst
233 * @param update_ctx if this is 0 then the context wont be modified, that way several channels can be resampled with the same context 233 * @param update_ctx If this is 0 then the context will not be modified, that way several channels can be resampled with the same context.
234 * @return the number of samples written in dst or -1 if an error occurred 234 * @return the number of samples written in dst or -1 if an error occurred
235 */ 235 */
236 int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){ 236 int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){
237 int dst_index, i; 237 int dst_index, i;
238 int index= c->index; 238 int index= c->index;