Home
last modified time | relevance | path

Searched refs:cues (Results 1 – 25 of 25) 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.c484 if (psf->cues) in wav_read_header()
485 { free (psf->cues) ; in wav_read_header()
486 psf->cues = NULL ; in wav_read_header()
489 if ((psf->cues = psf_cues_alloc (cue_count)) == NULL) in wav_read_header()
509 psf->cues->cue_points [cue_index].indx = id ; in wav_read_header()
510 psf->cues->cue_points [cue_index].position = position ; in wav_read_header()
511 psf->cues->cue_points [cue_index].fcc_chunk = chunk_id ; in wav_read_header()
512 psf->cues->cue_points [cue_index].chunk_start = chunk_start ; in wav_read_header()
513 psf->cues->cue_points [cue_index].block_start = block_start ; in wav_read_header()
514 psf->cues->cue_points [cue_index].sample_offset = offset ; in wav_read_header()
[all …]
Dwavlike.c1038 if (psf->cues) in wavlike_subchunk_parse()
1042 while (i < psf->cues->cue_count && psf->cues->cue_points [i].indx != mark_id) in wavlike_subchunk_parse()
1045 if (i < psf->cues->cue_count) in wavlike_subchunk_parse()
1046 memcpy (psf->cues->cue_points [i].name, buffer, sizeof (psf->cues->cue_points [i].name)) ; in wavlike_subchunk_parse()
Dsndfile.c1276 if (psf->cues != NULL) in sf_command()
1277 { *((uint32_t *) data) = psf->cues->cue_count ; in sf_command()
1287 if (psf->cues == NULL) in sf_command()
1301 if (psf->cues == NULL && (psf->cues = psf_cues_dup (data, datasize)) == NULL) in sf_command()
2905 free (psf->cues) ; in psf_close()
Dcommon.c1282 if (psf->cues) in psf_get_cues()
1285 cue_count = SF_MIN (cue_count, psf->cues->cue_count) ; in psf_get_cues()
1286 memcpy (data, psf->cues, SF_CUES_VAR_SIZE (cue_count)) ; in psf_get_cues()
Dcommon.h463 SF_CUES *cues ; member
/third_party/libsnd/programs/
Dsndfile-convert.c375 SF_CUES cues ; in copy_metadata() local
387 memset (&cues, 0, sizeof (cues)) ; in copy_metadata()
397 if (sf_command (infile, SFC_GET_CUE, &cues, sizeof (cues)) == SF_TRUE) in copy_metadata()
398 sf_command (outfile, SFC_SET_CUE, &cues, sizeof (cues)) ; in copy_metadata()
/third_party/ffmpeg/libavformat/
Dmatroskaenc.c137 mkv_cues cues; member
461 av_freep(&mkv->cues.entries); in mkv_deinit()
534 mkv_cues *cues = &mkv->cues; in mkv_add_cuepoint() local
535 mkv_cuepoint *entries = cues->entries; in mkv_add_cuepoint()
540 entries = av_realloc_array(entries, cues->num_entries + 1, sizeof(mkv_cuepoint)); in mkv_add_cuepoint()
543 cues->entries = entries; in mkv_add_cuepoint()
545 cues->entries[cues->num_entries].pts = ts; in mkv_add_cuepoint()
546 cues->entries[cues->num_entries].stream_idx = stream; in mkv_add_cuepoint()
547 cues->entries[cues->num_entries].cluster_pos = cluster_pos - mkv->segment_offset; in mkv_add_cuepoint()
548 cues->entries[cues->num_entries].relative_pos = relative_pos; in mkv_add_cuepoint()
[all …]
/third_party/gstreamer/gstplugins_good/gst/wavenc/
Dgstwavenc.c663 wavenc->cues = g_list_append (wavenc->cues, cue); in gst_wavenc_parse_cue()
848 if (id64 >= 0 && gst_wavenc_is_cue_id_unique (id64, wavenc->cues)) { in gst_wavenc_write_toc()
853 } while (!gst_wavenc_is_cue_id_unique (id, wavenc->cues)); in gst_wavenc_write_toc()
862 if (wavenc->cues) { in gst_wavenc_write_toc()
863 cues_size = 24 * g_list_length (wavenc->cues); in gst_wavenc_write_toc()
901 if (wavenc->cues) { in gst_wavenc_write_toc()
906 gst_wavenc_write_cues (&data, wavenc->cues); in gst_wavenc_write_toc()
924 if (wavenc->cues) in gst_wavenc_write_toc()
925 g_list_free_full (wavenc->cues, g_free); in gst_wavenc_write_toc()
Dgstwavenc.h52 GList *cues; member
/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/gstreamer/gstplugins_good/gst/wavparse/
Dgstwavparse.h70 GList *cues; member
Dgstwavparse.c253 if (wav->cues) in gst_wavparse_reset()
254 g_list_free_full (wav->cues, g_free); in gst_wavparse_reset()
255 wav->cues = NULL; in gst_wavparse_reset()
784 GList *cues = NULL; in gst_wavparse_cue_chunk() local
787 if (wav->cues) { in gst_wavparse_cue_chunk()
809 cues = g_list_append (cues, cue); in gst_wavparse_cue_chunk()
813 wav->cues = cues; in gst_wavparse_cue_chunk()
1000 if (!wav->cues) { in gst_wavparse_create_toc()
1014 list = wav->cues; in gst_wavparse_create_toc()
/third_party/libsnd/docs/
Dcommand.md1762 SF_CUES cues ;
1763 sf_command (sndfile, SFC_GET_CUE, &cues, sizeof (cues)) ;
1792 SF_CUES cues ;
1793 sf_command (sndfile, SFC_SET_CUE, &cues, sizeof (cues)) ;
/third_party/ffmpeg/doc/
Dmuxers.texi1405 By default, this muxer writes the index for seeking (called cues in Matroska
1412 of space in the file header and then try to write the cues there when the muxing
1417 Note that cues are only written if the output is seekable and this option will
Dfilters.texi4018 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
/third_party/node/test/fixtures/wpt/interfaces/
Dhtml.idl629 readonly attribute TextTrackCueList? cues;
/third_party/typescript/tests/lib/
Dlib.d.ts14625 cues: TextTrackCueList; property
/third_party/mindspore/tests/ut/data/mindrecord/testAclImdbData/
Dvocab.txt23392 cues
/third_party/typescript/lib/
Dlib.dom.d.ts15745 readonly cues: TextTrackCueList | null; property
/third_party/typescript/src/lib/
Ddom.generated.d.ts15725 readonly cues: TextTrackCueList | null; property
/third_party/gstreamer/gstplugins_base/docs/random/
DChangeLog-0.85454 Create cues for audio only files.
/third_party/gstreamer/gstplugins_bad/docs/random/
DChangeLog-0.87625 Create cues for audio only files.
/third_party/gstreamer/gstplugins_base/
DChangeLog8122 without any cues.
/third_party/gstreamer/gstplugins_bad/
DChangeLog132206 webvttenc: Separate cues with two line breaks instead of one.