summaryrefslogtreecommitdiff
path: root/libavcodec/vble.c
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-11-19 10:49:37 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-11-19 15:36:20 +0100
commit1b20877f34d9b8bfdb244f1618281d6001527d2a (patch)
tree9cd395cb91c30025062cdc75ab74fe69d0753f3f /libavcodec/vble.c
parente6d81ce22e433e5413003e49b39587d739a04520 (diff)
downloadffmpeg-1b20877f34d9b8bfdb244f1618281d6001527d2a.tar.gz
vble: remove superfluous braces
Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vble.c')
-rw-r--r--libavcodec/vble.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/vble.c b/libavcodec/vble.c
index fb09acde80..448006a0c3 100644
--- a/libavcodec/vble.c
+++ b/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);