Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavdevice/
Dfbdev_common.c111 if ((ret = av_dynarray_add_nofree(&device_list->devices, in ff_fbdev_get_device_list()
Dpulse_audio_common.c158 if ((ret = av_dynarray_add_nofree(&info->devices->devices, in pulse_add_detected_device()
Dalsa.c387 if ((ret = av_dynarray_add_nofree(&device_list->devices, in ff_alsa_get_device_list()
Ddecklink_common.cpp408av_dynarray_add_nofree(&device_list->devices, &device_list->nb_devices, new_device) < 0) { in ff_decklink_list_devices()
Dv4l2.c1076 if ((ret = av_dynarray_add_nofree(&device_list->devices, in v4l2_get_device_list()
/third_party/ffmpeg/libavutil/
Dmem.h628 int av_dynarray_add_nofree(void *tab_ptr, int *nb_ptr, void *elem);
Dmem.c296 int av_dynarray_add_nofree(void *tab_ptr, int *nb_ptr, void *elem) in av_dynarray_add_nofree() function
/third_party/ffmpeg/libavformat/
Ddashdec.c649 err = av_dynarray_add_nofree(&rep->fragments, &rep->n_fragments, seg); in parse_manifest_segmenturlnode()
691 err = av_dynarray_add_nofree(&rep->timelines, &rep->n_timelines, tml); in parse_manifest_segmenttimeline()
989 ret = av_dynarray_add_nofree(&rep->fragments, &rep->n_fragments, seg); in parse_manifest_representation()
1070 ret = av_dynarray_add_nofree(&c->videos, &c->n_videos, rep); in parse_manifest_representation()
1073 ret = av_dynarray_add_nofree(&c->audios, &c->n_audios, rep); in parse_manifest_representation()
1076 ret = av_dynarray_add_nofree(&c->subtitles, &c->n_subtitles, rep); in parse_manifest_representation()
Dtee.c468 ret = av_dynarray_add_nofree(&slaves, &nb_slaves, slave); in tee_write_header()
Did3v2.c1200 if ((ret = av_dynarray_add_nofree(&chapters, &num_chapters, chap)) < 0) in ff_id3v2_parse_chapters()
Dmpegtsenc.c892 if (av_dynarray_add_nofree(&ts->services, &ts->nb_services, service) < 0) in mpegts_add_service()
Dutils.c4658 ret = av_dynarray_add_nofree(&ac->programs, &ac->nb_programs, program);
4702 ret = av_dynarray_add_nofree(&s->chapters, &s->nb_chapters, chapter);
/third_party/ffmpeg/libavcodec/
Dbsf.c437 return av_dynarray_add_nofree(&lst->bsfs, &lst->nb_bsfs, bsf); in av_bsf_list_append()
/third_party/ffmpeg/doc/
DAPIchanges1435 Add av_dynarray_add_nofree() function.