Commit c6f53812 authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove useless casts

Originally committed as revision 12201 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9df21f24
......@@ -261,15 +261,15 @@ static int aiff_write_trailer(AVFormatContext *s)
if (!url_is_streamed(s->pb)) {
/* File length */
url_fseek(pb, aiff->form, SEEK_SET);
put_be32(pb, (uint32_t)(file_size - aiff->form - 4));
put_be32(pb, file_size - aiff->form - 4);
/* Number of sample frames */
url_fseek(pb, aiff->frames, SEEK_SET);
put_be32(pb, ((uint32_t)(file_size-aiff->ssnd-12))/enc->block_align);
put_be32(pb, (file_size-aiff->ssnd-12)/enc->block_align);
/* Sound Data chunk size */
url_fseek(pb, aiff->ssnd, SEEK_SET);
put_be32(pb, (uint32_t)(file_size - aiff->ssnd - 4));
put_be32(pb, file_size - aiff->ssnd - 4);
/* return to the end */
url_fseek(pb, end_size, SEEK_SET);
......
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