mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 01:02:33 +00:00
rmdec: add missing brackets to compound statement
Accidentally left out of 95ce02b35d
.
This commit is contained in:
parent
550cb6a85d
commit
80e919b174
@ -784,10 +784,11 @@ ff_rm_parse_packet (AVFormatContext *s, AVIOContext *pb,
|
|||||||
return ret;
|
return ret;
|
||||||
rm_ac3_swap_bytes(st, pkt);
|
rm_ac3_swap_bytes(st, pkt);
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
ret = av_get_packet(pb, pkt, len);
|
ret = av_get_packet(pb, pkt, len);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
pkt->stream_index = st->index;
|
pkt->stream_index = st->index;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user