Commit 1758c712 authored by Baptiste Coudurier's avatar Baptiste Coudurier

this is named BlockSize in specs

Originally committed as revision 9430 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 11d540a4
...@@ -355,7 +355,7 @@ static int aiff_read_header(AVFormatContext *s, ...@@ -355,7 +355,7 @@ static int aiff_read_header(AVFormatContext *s,
case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */ case MKTAG('S', 'S', 'N', 'D'): /* Sampled sound chunk */
offset = get_be32(pb); /* Offset of sound data */ offset = get_be32(pb); /* Offset of sound data */
offset += url_ftell(pb); /* Compute absolute data offset */ 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 */ if (st->codec->codec_id) /* Assume COMM already parsed */
goto got_sound; goto got_sound;
if (url_is_streamed(pb)) { if (url_is_streamed(pb)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment