summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-12-18 09:18:43 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-12-18 09:18:43 +0000
commit364df7b7b9082cd0aad937e656961f8b2e3153f4 (patch)
tree7cd4e9bbcd4f46344ec98cf102ad028afcb635c4
parenta15328249d8244c5a60b9740709fc88e4964080f (diff)
cosmetics, remove useless parenthesis and whitespaces
Originally committed as revision 16213 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/mov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index e196365231..5ba83e4be8 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: