mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
lavc: fix typos
Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 3305f71025289970fb34473adce5d9c65d1af016) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6457346e6a
commit
17b8e7799f
@ -61,7 +61,7 @@ static inline void asv2_put_level(ASV1Context *a, PutBitContext *pb, int level)
|
|||||||
} else {
|
} else {
|
||||||
put_bits(pb, ff_asv2_level_tab[31][1], ff_asv2_level_tab[31][0]);
|
put_bits(pb, ff_asv2_level_tab[31][1], ff_asv2_level_tab[31][0]);
|
||||||
if (level < -128 || level > 127) {
|
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);
|
level = av_clip_int8(level);
|
||||||
}
|
}
|
||||||
asv2_put_bits(pb, 8, level & 0xFF);
|
asv2_put_bits(pb, 8, level & 0xFF);
|
||||||
|
@ -2432,7 +2432,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
s->closed_gop = get_bits1(&s->gb);
|
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
|
* reference frames of the first B-Frames after GOP I-Frame
|
||||||
* are missing (open gop) */
|
* are missing (open gop) */
|
||||||
broken_link = get_bits1(&s->gb);
|
broken_link = get_bits1(&s->gb);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user