Home
last modified time | relevance | path

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

/third_party/libsnd/src/
Daiff.c809 if (psf->cues) in aiff_read_header()
810 { free (psf->cues) ; in aiff_read_header()
811 psf->cues = NULL ; in aiff_read_header()
813 if ((psf->cues = psf_cues_alloc (mark_count)) == NULL) in aiff_read_header()
823 psf->cues->cue_points [n].indx = mark_id ; in aiff_read_header()
824 psf->cues->cue_points [n].position = 0 ; in aiff_read_header()
825 psf->cues->cue_points [n].fcc_chunk = MAKE_MARKER ('d', 'a', 't', 'a') ; /* always data */ in aiff_read_header()
826 psf->cues->cue_points [n].chunk_start = 0 ; in aiff_read_header()
827 psf->cues->cue_points [n].block_start = 0 ; in aiff_read_header()
828 psf->cues->cue_points [n].sample_offset = position ; in aiff_read_header()
[all …]
Dwav.c499 if (psf->cues) in wav_read_header()
500 { free (psf->cues) ; in wav_read_header()
501 psf->cues = NULL ; in wav_read_header()
504 if ((psf->cues = psf_cues_alloc (cue_count)) == NULL) in wav_read_header()
524 psf->cues->cue_points [cue_index].indx = id ; in wav_read_header()
525 psf->cues->cue_points [cue_index].position = position ; in wav_read_header()
526 psf->cues->cue_points [cue_index].fcc_chunk = chunk_id ; in wav_read_header()
527 psf->cues->cue_points [cue_index].chunk_start = chunk_start ; in wav_read_header()
528 psf->cues->cue_points [cue_index].block_start = block_start ; in wav_read_header()
529 psf->cues->cue_points [cue_index].sample_offset = offset ; in wav_read_header()
[all …]
Dwavlike.c1061 if (psf->cues) in wavlike_subchunk_parse()
1065 while (i < psf->cues->cue_count && psf->cues->cue_points [i].indx != mark_id) in wavlike_subchunk_parse()
1068 if (i < psf->cues->cue_count) in wavlike_subchunk_parse()
1069 memcpy (psf->cues->cue_points [i].name, buffer, sizeof (psf->cues->cue_points [i].name)) ; in wavlike_subchunk_parse()
Dsndfile.c1364 if (psf->cues != NULL) in sf_command()
1365 { *((uint32_t *) data) = psf->cues->cue_count ; in sf_command()
1375 if (psf->cues == NULL) in sf_command()
1389 if (psf->cues == NULL && (psf->cues = psf_cues_dup (data, datasize)) == NULL) in sf_command()
2994 free (psf->cues) ; in psf_close()
Dcommon.c1350 if (psf->cues) in psf_get_cues()
1353 cue_count = SF_MIN (cue_count, psf->cues->cue_count) ; in psf_get_cues()
1354 memcpy (data, psf->cues, SF_CUES_VAR_SIZE (cue_count)) ; in psf_get_cues()
Dcommon.h414 SF_CUES *cues ; member
/third_party/libsnd/programs/
Dsndfile-convert.c378 SF_CUES cues ; in copy_metadata() local
390 memset (&cues, 0, sizeof (cues)) ; in copy_metadata()
400 if (sf_command (infile, SFC_GET_CUE, &cues, sizeof (cues)) == SF_TRUE) in copy_metadata()
401 sf_command (outfile, SFC_SET_CUE, &cues, sizeof (cues)) ; in copy_metadata()
/third_party/ffmpeg/tests/ref/fate/
Dmatroska-move-cues-to-front1 8ebfcf15768bbe66611e349383fbf26a *tests/data/fate/matroska-move-cues-to-front.matroska
2 23210287 tests/data/fate/matroska-move-cues-to-front.matroska
/third_party/ffmpeg/libavformat/
Dmatroskaenc.c216 mkv_cues cues; member
843 av_freep(&mkv->cues.entries); in mkv_deinit()
916 mkv_cues *cues = &mkv->cues; in mkv_add_cuepoint() local
917 mkv_cuepoint *entries = cues->entries; in mkv_add_cuepoint()
918 unsigned idx = cues->num_entries; in mkv_add_cuepoint()
923 entries = av_realloc_array(entries, cues->num_entries + 1, sizeof(mkv_cuepoint)); in mkv_add_cuepoint()
926 cues->entries = entries; in mkv_add_cuepoint()
932 (cues->num_entries - idx) * sizeof(entries[0])); in mkv_add_cuepoint()
940 cues->num_entries++; in mkv_add_cuepoint()
946 const mkv_cues *cues, mkv_track *tracks, int num_tracks, in mkv_assemble_cues() argument
[all …]
/third_party/libsnd/tests/
Dcommand_test.c897 SF_CUES cues ; in cue_rw_test() local
903 sf_command (sndfile, SFC_GET_CUE_COUNT, &cues.cue_count, sizeof (cues.cue_count)) != SF_TRUE, in cue_rw_test()
908 cues.cue_count != 3, in cue_rw_test()
909 "\nLine %d: Expected cue_count (%u) to be 3.\n\n", __LINE__, cues.cue_count in cue_rw_test()
912 if (sf_command (sndfile, SFC_GET_CUE, &cues, sizeof (cues)) == SF_TRUE) in cue_rw_test()
913 { cues.cue_points [1].sample_offset = 3 ; in cue_rw_test()
915 if (sf_command (sndfile, SFC_SET_CUE, &cues, sizeof (cues)) == SF_TRUE) in cue_rw_test()
/third_party/libsnd/docs/
Dcommand.md1789 SF_CUES cues ;
1790 sf_command (sndfile, SFC_GET_CUE, &cues, sizeof (cues)) ;
1819 SF_CUES cues ;
1820 sf_command (sndfile, SFC_SET_CUE, &cues, sizeof (cues)) ;
/third_party/ffmpeg/tests/fate/
Dmatroska.mak78 += fate-matroska-move-cues-to-front
79 fate-matroska-move-cues-to-front: CMD = transcode wav $(TARGET_SAMPLES)/audio-reference/divertiment…
/third_party/ffmpeg/doc/
Dmuxers.texi1558 By default, this muxer writes the index for seeking (called cues in Matroska
1565 of space in the file header and then try to write the cues there when the muxing
1570 Note that cues are only written if the output is seekable and this option will
Dfilters.texi4571 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
/third_party/node/test/fixtures/wpt/interfaces/
Dhtml.idl677 readonly attribute TextTrackCueList? cues;
/third_party/typescript/tests/lib/
Dlib.d.ts14625 cues: TextTrackCueList; property
/third_party/typescript/src/lib/
Ddom.generated.d.ts14200 readonly cues: TextTrackCueList | null; property
/third_party/typescript/lib/
Dlib.dom.d.ts14220 readonly cues: TextTrackCueList | null; property