From 364df7b7b9082cd0aad937e656961f8b2e3153f4 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Thu, 18 Dec 2008 09:18:43 +0000 Subject: [PATCH] cosmetics, remove useless parenthesis and whitespaces Originally committed as revision 16213 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index e196365..5ba83e4 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1034,8 +1034,8 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) break; case CODEC_ID_ALAC: if (st->codec->extradata_size == 36) { - st->codec->frame_size = AV_RB32((st->codec->extradata+12)); - st->codec->channels = AV_RB8 (st->codec->extradata+21); + st->codec->frame_size = AV_RB32(st->codec->extradata+12); + st->codec->channels = AV_RB8 (st->codec->extradata+21); } break; default: -- 2.7.4