You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avcodec/ituh263enc: Fix indentation
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@ -511,9 +511,9 @@ static void h263_encode_block(MPVEncContext *const s, int16_t block[], int n)
|
|||||||
|
|
||||||
av_assert2(slevel != 0);
|
av_assert2(slevel != 0);
|
||||||
|
|
||||||
if(level < 128)
|
if (level < 128) {
|
||||||
put_sbits(&s->pb, 8, slevel);
|
put_sbits(&s->pb, 8, slevel);
|
||||||
else{
|
} else {
|
||||||
put_bits(&s->pb, 8, 128);
|
put_bits(&s->pb, 8, 128);
|
||||||
put_sbits(&s->pb, 5, slevel);
|
put_sbits(&s->pb, 5, slevel);
|
||||||
put_sbits(&s->pb, 6, slevel>>5);
|
put_sbits(&s->pb, 6, slevel>>5);
|
||||||
|
Reference in New Issue
Block a user