avcodec/hcom: get rid of single line brackets

This commit is contained in:
Paul B Mahol 2019-01-15 11:34:11 +01:00
parent 268d146649
commit 95a27a8846
1 changed files with 2 additions and 3 deletions

View File

@ -90,11 +90,10 @@ static int hcom_decode(AVCodecContext *avctx, void *data,
return ret;
while (get_bits_left(&gb) > 0) {
if (get_bits1(&gb)) {
if (get_bits1(&gb))
s->dict_entry = s->dict[s->dict_entry].r;
} else {
else
s->dict_entry = s->dict[s->dict_entry].l;
}
if (s->dict[s->dict_entry].l < 0) {
int16_t datum;