Home
last modified time | relevance | path

Searched refs:nb_ptses (Results 1 – 1 of 1) sorted by relevance

/third_party/ffmpeg/libavformat/
Dmxfdec.c270 int nb_ptses; /* number of PTSes or total duration of index */ member
1717 index_table->nb_ptses = 0; in mxf_compute_ptses_fake_index()
1721 if (s->index_duration > INT_MAX - index_table->nb_ptses) { in mxf_compute_ptses_fake_index()
1722 index_table->nb_ptses = 0; in mxf_compute_ptses_fake_index()
1727 index_table->nb_ptses += s->index_duration; in mxf_compute_ptses_fake_index()
1731 if (index_table->nb_ptses <= 0) in mxf_compute_ptses_fake_index()
1734 if (!(index_table->ptses = av_calloc(index_table->nb_ptses, sizeof(int64_t))) || in mxf_compute_ptses_fake_index()
1735 !(index_table->fake_index = av_calloc(index_table->nb_ptses, sizeof(AVIndexEntry))) || in mxf_compute_ptses_fake_index()
1736 !(index_table->offsets = av_calloc(index_table->nb_ptses, sizeof(int8_t))) || in mxf_compute_ptses_fake_index()
1737 !(flags = av_calloc(index_table->nb_ptses, sizeof(uint8_t)))) { in mxf_compute_ptses_fake_index()
[all …]