[FFmpeg-cvslog] lavc: fix typos
Moritz Barsnick
git at videolan.org
Mon Oct 17 06:02:56 EEST 2016
ffmpeg | branch: release/3.0 | Moritz Barsnick <barsnick at gmx.net> | Sun Oct 9 12:56:59 2016 +0200| [17b8e7799f640a7cf41f4656184f3b5201e4d845] | committer: Michael Niedermayer
lavc: fix typos
Signed-off-by: Moritz Barsnick <barsnick at gmx.net>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 3305f71025289970fb34473adce5d9c65d1af016)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=17b8e7799f640a7cf41f4656184f3b5201e4d845
---
libavcodec/asvenc.c | 2 +-
libavcodec/mpeg12dec.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/asvenc.c b/libavcodec/asvenc.c
index ec98a0c..c4eca2a 100644
--- a/libavcodec/asvenc.c
+++ b/libavcodec/asvenc.c
@@ -61,7 +61,7 @@ static inline void asv2_put_level(ASV1Context *a, PutBitContext *pb, int level)
} else {
put_bits(pb, ff_asv2_level_tab[31][1], ff_asv2_level_tab[31][0]);
if (level < -128 || level > 127) {
- av_log(a->avctx, AV_LOG_WARNING, "Cliping level %d, increase qscale\n", level);
+ av_log(a->avctx, AV_LOG_WARNING, "Clipping level %d, increase qscale\n", level);
level = av_clip_int8(level);
}
asv2_put_bits(pb, 8, level & 0xFF);
diff --git a/libavcodec/mpeg12dec.c b/libavcodec/mpeg12dec.c
index cc8ace8..caa5f0c 100644
--- a/libavcodec/mpeg12dec.c
+++ b/libavcodec/mpeg12dec.c
@@ -2432,7 +2432,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
#endif
s->closed_gop = get_bits1(&s->gb);
- /* broken_link indicate that after editing the
+ /* broken_link indicates that after editing the
* reference frames of the first B-Frames after GOP I-Frame
* are missing (open gop) */
broken_link = get_bits1(&s->gb);
More information about the ffmpeg-cvslog
mailing list