From: Sebastian Vater Date: Tue, 20 Apr 2010 17:05:02 +0000 (+0000) Subject: Change a %2 to &1. Patch by Sebastian Vater . X-Git-Tag: v0.6~202 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bf29cbc2cc771e544174f87c5563f85a060f93b9;p=coroid%2Flibav_saccubus.git Change a %2 to &1. Patch by Sebastian Vater . Originally committed as revision 22922 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavformat/avidec.c b/libavformat/avidec.c index c9e657ee8..34583c52d 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -560,7 +560,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap) av_log(s, AV_LOG_WARNING, "sample size (%d) != block align (%d)\n", ast->sample_size, st->codec->block_align); ast->sample_size= st->codec->block_align; } - if (size%2) /* 2-aligned (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */ + if (size&1) /* 2-aligned (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */ url_fskip(pb, 1); /* Force parsing as several audio frames can be in * one packet and timestamps refer to packet start. */