mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
vble: remove superfluous braces
Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e6d81ce22e
commit
1b20877f34
@ -140,9 +140,8 @@ static int vble_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
|
||||
/* Version should always be 1 */
|
||||
version = AV_RL32(src);
|
||||
|
||||
if (version != 1) {
|
||||
if (version != 1)
|
||||
av_log(avctx, AV_LOG_WARNING, "Unsupported VBLE Version: %d\n", version);
|
||||
}
|
||||
|
||||
init_get_bits(&gb, src + 4, (avpkt->size - 4) * 8);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user