[FFmpeg-cvslog] avformat/ipmovie: remove superflous ()
Michael Niedermayer
git at videolan.org
Wed Dec 18 23:24:25 CET 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Dec 18 23:15:52 2013 +0100| [5f0d552c9b4cd83812d8e1619b96c294401141d1] | committer: Michael Niedermayer
avformat/ipmovie: remove superflous ()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5f0d552c9b4cd83812d8e1619b96c294401141d1
---
libavformat/ipmovie.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/ipmovie.c b/libavformat/ipmovie.c
index 6d2cc05..db95c49 100644
--- a/libavformat/ipmovie.c
+++ b/libavformat/ipmovie.c
@@ -339,7 +339,7 @@ static int process_ipmovie_chunk(IPMVEContext *s, AVIOContext *pb,
case OPCODE_INIT_AUDIO_BUFFERS:
av_dlog(NULL, "initialize audio buffers\n");
- if ((opcode_version > 1) || (opcode_size > 10) || opcode_size < 6) {
+ if (opcode_version > 1 || opcode_size > 10 || opcode_size < 6) {
av_dlog(NULL, "bad init_audio_buffers opcode\n");
chunk_type = CHUNK_BAD;
break;
More information about the ffmpeg-cvslog
mailing list