Home
last modified time | relevance | path

Searched refs:cues (Results 1 – 24 of 24) 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/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.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/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.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
/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.