mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/hcom: get rid of single line brackets
This commit is contained in:
parent
268d146649
commit
95a27a8846
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user