diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-06-25 21:47:29 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-06-25 21:47:29 +0000 |
commit | 1758c7128da4c7ef7b216a6a7b6c85327e855e7e (patch) | |
tree | 09e26bc988b3eaa5597ff73c0eefaf4a34b66cc9 /libavformat/aiff.c | |
parent | 11d540a480f962e5a854b6c35da132f5e7f1f4a5 (diff) | |
download | ffmpeg-1758c7128da4c7ef7b216a6a7b6c85327e855e7e.tar.gz |
this is named BlockSize in specs
Originally committed as revision 9430 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/aiff.c')
-rw-r--r-- | libavformat/aiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c index c420e0b52f..c8e89c7c1d 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -355,7 +355,7 @@ static int aiff_read_header(AVFormatContext *s, case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */ offset = get_be32(pb); /* Offset of sound data */ offset += url_ftell(pb); /* Compute absolute data offset */ - get_be32(pb); /* Block align... don't care */ + get_be32(pb); /* BlockSize... don't care */ if (st->codec->codec_id) /* Assume COMM already parsed */ goto got_sound; if (url_is_streamed(pb)) { |