1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-07 18:14:16 +02:00

asfenc: remove useless casts

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Ramiro Polla 2012-04-04 02:50:40 -03:00 committed by Michael Niedermayer
parent f2fad251b8
commit bc13b74992

View File

@ -813,13 +813,13 @@ static int asf_write_packet(AVFormatContext *s, AVPacket *pkt)
if (start_sec != (int)(asf->last_indexed_pts / INT64_C(10000000))) {
if (start_sec > asf->nb_index_memory_alloc) {
asf->nb_index_memory_alloc = (start_sec + ASF_INDEX_BLOCK) & ~(ASF_INDEX_BLOCK - 1);
asf->index_ptr = (ASFIndex*)av_realloc( asf->index_ptr, sizeof(ASFIndex) * asf->nb_index_memory_alloc );
asf->index_ptr = av_realloc( asf->index_ptr, sizeof(ASFIndex) * asf->nb_index_memory_alloc );
}
for(i=asf->nb_index_count;i<start_sec;i++) {
// store
asf->index_ptr[i].packet_number = (uint32_t)packet_number;
asf->index_ptr[i].packet_count = (uint16_t)packet_count;
asf->maximum_packet = FFMAX(asf->maximum_packet, (uint16_t)packet_count);
asf->index_ptr[i].packet_number = packet_number;
asf->index_ptr[i].packet_count = packet_count;
asf->maximum_packet = FFMAX(asf->maximum_packet, packet_count);
}
asf->nb_index_count = start_sec;
asf->last_indexed_pts = pts;