/third_party/libsnd/src/ |
D | aiff.c | 809 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 …]
|
D | wav.c | 484 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 …]
|
D | wavlike.c | 1038 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()
|
D | sndfile.c | 1276 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()
|
D | common.c | 1282 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()
|
D | common.h | 463 SF_CUES *cues ; member
|
/third_party/libsnd/programs/ |
D | sndfile-convert.c | 375 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/ |
D | matroskaenc.c | 137 mkv_cues cues; member 460 av_freep(&mkv->cues.entries); in mkv_deinit() 533 mkv_cues *cues = &mkv->cues; in mkv_add_cuepoint() local 534 mkv_cuepoint *entries = cues->entries; in mkv_add_cuepoint() 539 entries = av_realloc_array(entries, cues->num_entries + 1, sizeof(mkv_cuepoint)); in mkv_add_cuepoint() 542 cues->entries = entries; in mkv_add_cuepoint() 544 cues->entries[cues->num_entries].pts = ts; in mkv_add_cuepoint() 545 cues->entries[cues->num_entries].stream_idx = stream; in mkv_add_cuepoint() 546 cues->entries[cues->num_entries].cluster_pos = cluster_pos - mkv->segment_offset; in mkv_add_cuepoint() 547 cues->entries[cues->num_entries].relative_pos = relative_pos; in mkv_add_cuepoint() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/wavenc/ |
D | gstwavenc.c | 655 wavenc->cues = g_list_append (wavenc->cues, cue); in gst_wavenc_parse_cue() 840 if (id64 >= 0 && gst_wavenc_is_cue_id_unique (id64, wavenc->cues)) { in gst_wavenc_write_toc() 845 } while (!gst_wavenc_is_cue_id_unique (id, wavenc->cues)); in gst_wavenc_write_toc() 854 if (wavenc->cues) { in gst_wavenc_write_toc() 855 cues_size = 24 * g_list_length (wavenc->cues); in gst_wavenc_write_toc() 893 if (wavenc->cues) { in gst_wavenc_write_toc() 898 gst_wavenc_write_cues (&data, wavenc->cues); in gst_wavenc_write_toc() 916 if (wavenc->cues) in gst_wavenc_write_toc() 917 g_list_free_full (wavenc->cues, g_free); in gst_wavenc_write_toc()
|
D | gstwavenc.h | 52 GList *cues; member
|
/third_party/gstreamer/gstplugins_good/gst/wavparse/ |
D | gstwavparse.h | 70 GList *cues; member
|
D | gstwavparse.c | 249 if (wav->cues) in gst_wavparse_reset() 250 g_list_free_full (wav->cues, g_free); in gst_wavparse_reset() 251 wav->cues = NULL; in gst_wavparse_reset() 780 GList *cues = NULL; in gst_wavparse_cue_chunk() local 783 if (wav->cues) { in gst_wavparse_cue_chunk() 805 cues = g_list_append (cues, cue); in gst_wavparse_cue_chunk() 809 wav->cues = cues; in gst_wavparse_cue_chunk() 998 if (!wav->cues) { in gst_wavparse_create_toc() 1012 list = wav->cues; in gst_wavparse_create_toc()
|
/third_party/libsnd/tests/ |
D | command_test.c | 897 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/ |
D | command.md | 1762 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/ |
D | muxers.texi | 1377 By default, this muxer writes the index for seeking (called cues in Matroska 1384 of space in the file header and then try to write the cues there when the muxing 1389 Note that cues are only written if the output is seekable and this option will
|
D | filters.texi | 3555 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
|
/third_party/node/test/fixtures/wpt/interfaces/ |
D | html.idl | 629 readonly attribute TextTrackCueList? cues;
|
/third_party/typescript/tests/lib/ |
D | lib.d.ts | 14625 cues: TextTrackCueList; property
|
/third_party/typescript/lib/ |
D | lib.dom.d.ts | 15745 readonly cues: TextTrackCueList | null; property
|
/third_party/typescript/src/lib/ |
D | dom.generated.d.ts | 15725 readonly cues: TextTrackCueList | null; property
|
/third_party/gstreamer/gstplugins_good/docs/random/ |
D | ChangeLog-0.8 | 7366 Create cues for audio only files.
|
/third_party/gstreamer/gstplugins_bad/docs/random/ |
D | ChangeLog-0.8 | 7625 Create cues for audio only files.
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 92622 webvttenc: Separate cues with two line breaks instead of one.
|