Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
Dflvdec.c411 int64_t *filepositions = NULL; in parse_keyframes_index() local
442 !filepositions) { in parse_keyframes_index()
443 current_array = &filepositions; in parse_keyframes_index()
464 if (times && filepositions) { in parse_keyframes_index()
472 if (timeslen == fileposlen && fileposlen>1 && max_pos <= filepositions[0]) { in parse_keyframes_index()
474 flv->validate_index[i].pos = filepositions[i]; in parse_keyframes_index()
479 flv->keyframe_filepositions = filepositions; in parse_keyframes_index()
482 filepositions = NULL; in parse_keyframes_index()
490 av_freep(&filepositions); in parse_keyframes_index()
Dflvenc.c112 FLVFileposition *filepositions; member
563 flv->filepositions = position; in flv_append_keyframe_info()
564 flv->head_filepositions = flv->filepositions; in flv_append_keyframe_info()
567 flv->filepositions->next = position; in flv_append_keyframe_info()
569 flv->filepositions = flv->filepositions->next; in flv_append_keyframe_info()
/third_party/gstreamer/gstplugins_good/gst/flv/
Dgstflvdemux.c516 if (demux->filepositions) { in gst_flv_demux_parse_metadata_item()
517 g_array_free (demux->filepositions, TRUE); in gst_flv_demux_parse_metadata_item()
519 demux->filepositions = g_array_new (FALSE, TRUE, sizeof (gdouble)); in gst_flv_demux_parse_metadata_item()
541 demux->filepositions) { in gst_flv_demux_parse_metadata_item()
542 g_array_append_val (demux->filepositions, d); in gst_flv_demux_parse_metadata_item()
690 if (demux->times && demux->filepositions) { in gst_flv_demux_parse_tag_script()
694 num = MIN (demux->times->len, demux->filepositions->len); in gst_flv_demux_parse_tag_script()
699 fileposition = g_array_index (demux->filepositions, gdouble, i); in gst_flv_demux_parse_tag_script()
2133 if (demux->filepositions) { in gst_flv_demux_cleanup()
2134 g_array_free (demux->filepositions, TRUE); in gst_flv_demux_cleanup()
[all …]
Dgstflvdemux.h74 GArray * filepositions; member