[FFmpeg-cvslog] vble: remove superfluous braces
Piotr Bandurski
git at videolan.org
Mon Nov 19 16:28:52 CET 2012
ffmpeg | branch: master | Piotr Bandurski <ami_stuff at o2.pl> | Mon Nov 19 10:49:37 2012 +0100| [1b20877f34d9b8bfdb244f1618281d6001527d2a] | committer: Michael Niedermayer
vble: remove superfluous braces
Reviewed-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1b20877f34d9b8bfdb244f1618281d6001527d2a
---
libavcodec/vble.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/libavcodec/vble.c b/libavcodec/vble.c
index fb09acd..448006a 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);
More information about the ffmpeg-cvslog
mailing list