diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-15 22:14:29 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-15 22:14:29 +0000 |
commit | 24c1d3b54dfa4989b03d9d9b40acfab8ccbb795f (patch) | |
tree | 2da61df191b510a21d1f76d566a65244f8a66210 /libavformat | |
parent | 0ba20fa56665f515d220040fd8f2fbee113da407 (diff) | |
download | ffmpeg-24c1d3b54dfa4989b03d9d9b40acfab8ccbb795f.tar.gz |
cosmetics, remove space before opening parenthesis
Originally committed as revision 13169 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/aiff.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c index 92329520b3..c9aadea68f 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -344,7 +344,7 @@ static int aiff_read_header(AVFormatContext *s, switch (tag) { case MKTAG('C', 'O', 'M', 'M'): /* Common chunk */ /* Then for the complete header info */ - st->nb_frames = get_aiff_header (pb, st->codec, size, version); + st->nb_frames = get_aiff_header(pb, st->codec, size, version); if (st->nb_frames < 0) return st->nb_frames; if (offset > 0) // COMM is after SSND @@ -354,16 +354,16 @@ static int aiff_read_header(AVFormatContext *s, version = get_be32(pb); break; case MKTAG('N', 'A', 'M', 'E'): /* Sample name chunk */ - get_meta (pb, s->title, sizeof(s->title), size); + get_meta(pb, s->title, sizeof(s->title), size); break; case MKTAG('A', 'U', 'T', 'H'): /* Author chunk */ - get_meta (pb, s->author, sizeof(s->author), size); + get_meta(pb, s->author, sizeof(s->author), size); break; case MKTAG('(', 'c', ')', ' '): /* Copyright chunk */ - get_meta (pb, s->copyright, sizeof(s->copyright), size); + get_meta(pb, s->copyright, sizeof(s->copyright), size); break; case MKTAG('A', 'N', 'N', 'O'): /* Annotation chunk */ - get_meta (pb, s->comment, sizeof(s->comment), size); + get_meta(pb, s->comment, sizeof(s->comment), size); break; case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */ offset = get_be32(pb); /* Offset of sound data */ |