summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-16 06:46:57 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-16 06:46:57 +0000
commitf05783c2db8662a38fa0a99d5b655c8781aacb49 (patch)
tree5097be1399b872031f1e456bb192f277db3d493a /libavformat/mov.c
parent9bf1b2683cc42bfa530aa62b9eb57d5cb9f1edbc (diff)
cosmetics, remove useless braces
Originally committed as revision 18004 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index c3b1e66503..e6ac071e4f 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -338,9 +338,9 @@ static int mov_read_hdlr(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
st->codec->codec_type = CODEC_TYPE_AUDIO;
else if(type == MKTAG('m','1','a',' '))
st->codec->codec_id = CODEC_ID_MP2;
- else if(type == MKTAG('s','u','b','p')) {
+ else if(type == MKTAG('s','u','b','p'))
st->codec->codec_type = CODEC_TYPE_SUBTITLE;
- }
+
get_be32(pb); /* component manufacture */
get_be32(pb); /* component flags */
get_be32(pb); /* component flags mask */