Lines Matching refs:index_ptr
221 ASFIndex *index_ptr;
310 if (pres_time <= asf->index_ptr[i].send_time)
312 send_time = asf->index_ptr[i].send_time;
313 *offset = asf->index_ptr[i].offset;
760 asf->index_ptr = av_malloc(sizeof(ASFIndex) * ASF_INDEX_BLOCK);
761 if (!asf->index_ptr)
990 if ((err = av_reallocp_array(&asf->index_ptr,
992 sizeof(*asf->index_ptr))) < 0) {
998 asf->index_ptr[i].packet_number = asf->next_packet_number;
999 asf->index_ptr[i].packet_count = asf->next_packet_count;
1000 asf->index_ptr[i].send_time = asf->next_start_sec * INT64_C(10000000);
1001 asf->index_ptr[i].offset = asf->next_packet_offset;
1096 asf_write_index(s, asf->index_ptr, asf->maximum_packet, asf->next_start_sec);
1115 av_freep(&asf->index_ptr);