Skip to content
Snippets Groups Projects
Commit 1b20877f authored by Piotr Bandurski's avatar Piotr Bandurski Committed by Michael Niedermayer
Browse files

vble: remove superfluous braces

parent e6d81ce2
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment