Commit 95a27a88 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/hcom: get rid of single line brackets

parent 268d1466
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment