[FFmpeg-cvslog] swr: fix a few typo.
Clément Bœsch
git at videolan.org
Fri Jun 1 08:06:49 CEST 2012
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Fri Jun 1 08:06:36 2012 +0200| [64df092b25e671f46fa5cc61ee217adc7cf3ff34] | committer: Clément Bœsch
swr: fix a few typo.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=64df092b25e671f46fa5cc61ee217adc7cf3ff34
---
libswresample/swresample.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libswresample/swresample.c b/libswresample/swresample.c
index 38bedf1..dc0b8eb 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;
}
}
More information about the ffmpeg-cvslog
mailing list