From 64df092b25e671f46fa5cc61ee217adc7cf3ff34 Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Fri, 1 Jun 2012 08:06:36 +0200 Subject: swr: fix a few typo. --- libswresample/swresample.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libswresample') diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 38bedf1e99..dc0b8eb4fc 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -84,9 +84,9 @@ static const AVOption options[]={ , OFFSET(min_compensation),AV_OPT_TYPE_FLOAT ,{.dbl=FLT_MAX }, 0 , FLT_MAX , PARAM }, {"min_hard_comp" , "Minimum difference between timestamps and audio data (in seconds) to trigger padding/trimming the data." , OFFSET(min_hard_compensation),AV_OPT_TYPE_FLOAT ,{.dbl=0.1 }, 0 , INT_MAX , PARAM }, -{"comp_duration" , "Duration (in seconds) over which data is stretched/squeezeed to make it match the timestamps." +{"comp_duration" , "Duration (in seconds) over which data is stretched/squeezed to make it match the timestamps." , OFFSET(soft_compensation_duration),AV_OPT_TYPE_FLOAT ,{.dbl=1 }, 0 , INT_MAX , PARAM }, -{"max_soft_comp" , "Maximum factor by which data is stretched/squeezeed to make it match the timestamps." +{"max_soft_comp" , "Maximum factor by which data is stretched/squeezed to make it match the timestamps." , OFFSET(max_soft_compensation),AV_OPT_TYPE_FLOAT ,{.dbl=0 }, INT_MIN, INT_MAX , PARAM }, {0} @@ -226,7 +226,7 @@ int swr_init(struct SwrContext *s){ }else if(av_get_planar_sample_fmt(s->in_sample_fmt) <= AV_SAMPLE_FMT_FLTP){ s->int_sample_fmt= AV_SAMPLE_FMT_FLTP; }else{ - av_log(s, AV_LOG_DEBUG, "Using double precission mode\n"); + av_log(s, AV_LOG_DEBUG, "Using double precision mode\n"); s->int_sample_fmt= AV_SAMPLE_FMT_DBLP; } } -- cgit v1.2.3