vble: remove superfluous braces

Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/8/head
Piotr Bandurski 12 years ago committed by Michael Niedermayer
parent e6d81ce22e
commit 1b20877f34
  1. 3
      libavcodec/vble.c

@ -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…
Cancel
Save