/third_party/ffmpeg/libswscale/ppc/ |
D | swscale_ppc_template.c | 104 LOCAL_ALIGNED(16, int, tempo, [4]); in FUNC() 131 vec_st(val_s, 0, tempo); in FUNC() 132 dst[i] = FFMIN(tempo[3] >> 7, (1 << 15) - 1); in FUNC() 149 vec_st(val_s, 0, tempo); in FUNC() 150 dst[i] = FFMIN(tempo[3] >> 7, (1 << 15) - 1); in FUNC() 171 VEC_ST(val_s, 0, tempo); in FUNC() 172 dst[i] = FFMIN(tempo[3] >> 7, (1 << 15) - 1); in FUNC() 217 VEC_ST(val_s, 0, tempo); in FUNC() 218 dst[i] = FFMIN(tempo[3] >> 7, (1 << 15) - 1); in FUNC()
|
/third_party/alsa-utils/seq/aplaymidi/ |
D | arecordmidi.c | 279 snd_seq_queue_tempo_t *tempo; in create_queue() local 285 snd_seq_queue_tempo_alloca(&tempo); in create_queue() 287 snd_seq_queue_tempo_set_tempo(tempo, 60000000 / beats); in create_queue() 288 snd_seq_queue_tempo_set_ppq(tempo, ticks); in create_queue() 297 snd_seq_queue_tempo_set_tempo(tempo, 500000); in create_queue() 298 snd_seq_queue_tempo_set_ppq(tempo, 12 * ticks); in create_queue() 301 snd_seq_queue_tempo_set_tempo(tempo, 400000); in create_queue() 302 snd_seq_queue_tempo_set_ppq(tempo, 10 * ticks); in create_queue() 305 snd_seq_queue_tempo_set_tempo(tempo, 100000000); in create_queue() 306 snd_seq_queue_tempo_set_ppq(tempo, 2997 * ticks); in create_queue() [all …]
|
D | aplaymidi.c | 53 int tempo; member 424 event->data.tempo = read_byte() << 16; in read_track() 425 event->data.tempo |= read_byte() << 8; in read_track() 426 event->data.tempo |= read_byte(); in read_track() 732 ev.data.queue.param.value = event->data.tempo; in play_midi()
|
/third_party/alsa-lib/test/ |
D | midifile.c | 153 double mf_ticks2sec (unsigned long ticks, int division, unsigned long tempo); 1030 mf_write_tempo (delta_time, tempo) in mf_write_tempo() argument 1032 unsigned long tempo; 1043 eputc ((unsigned) (0xff & (tempo >> 16))); 1044 eputc ((unsigned) (0xff & (tempo >> 8))); 1045 eputc ((unsigned) (0xff & tempo)); 1063 mf_sec2ticks (secs, division, tempo) in mf_sec2ticks() argument 1065 unsigned long tempo; 1068 return (unsigned long) (((secs * 1000.0) / 4.0 * division) / tempo); 1105 mf_ticks2sec (ticks, division, tempo) in mf_ticks2sec() argument [all …]
|
D | playmidi1.c | 150 snd_seq_queue_tempo_t *tempo; in do_header() local 163 snd_seq_queue_tempo_alloca(&tempo); in do_header() 165 if (snd_seq_get_queue_tempo(seq_handle, dest_queue, tempo) < 0) { in do_header() 169 if ((slave_ppq = snd_seq_queue_tempo_get_ppq(tempo)) != ppq) { in do_header() 170 snd_seq_queue_tempo_set_ppq(tempo, ppq); in do_header() 171 if (snd_seq_set_queue_tempo(seq_handle, dest_queue, tempo) < 0) { in do_header() 180 printf("ALSA Timer updated, PPQ = %d\n", snd_seq_queue_tempo_get_ppq(tempo)); in do_header()
|
D | midifile.h | 46 extern double mf_ticks2sec(unsigned long ticks,int division,unsigned long tempo);
|
/third_party/gstreamer/gstplugins_bad/ext/soundtouch/ |
D | gstpitch.cc | 201 pitch->tempo = 1.0; in gst_pitch_init() 210 pitch->priv->st->setTempo (pitch->tempo * pitch->seg_arate); in gst_pitch_init() 250 pitch->tempo = g_value_get_float (value); in gst_pitch_set_property() 252 pitch->tempo * pitch->rate * pitch->seg_arate; in gst_pitch_set_property() 253 pitch->priv->st->setTempo (pitch->tempo * pitch->seg_arate); in gst_pitch_set_property() 260 pitch->tempo * pitch->rate * pitch->seg_arate; in gst_pitch_set_property() 291 g_value_set_float (value, pitch->tempo); in gst_pitch_get_property() 714 stream_time_ratio = pitch->tempo * pitch->rate * pitch->seg_arate; in gst_pitch_process_segment() 725 pitch->priv->st->setTempo (pitch->tempo * pitch->seg_arate); in gst_pitch_process_segment()
|
D | gstpitch.hh | 52 gfloat tempo; /* time stretch member
|
/third_party/ffmpeg/libavfilter/ |
D | af_rubberband.c | 35 double tempo, pitch; member 49 …{ "tempo", "set tempo scale factor", OFFSET(tempo), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0.01, 100, … 168 s->rbs = rubberband_new(inlink->sample_rate, inlink->channels, opts, 1. / s->tempo, s->pitch); in config_input() 213 rubberband_set_time_ratio(s->rbs, 1. / s->tempo); in process_command()
|
D | af_atempo.c | 127 double tempo; member 162 OFFSET(tempo), AV_OPT_TYPE_DOUBLE, { .dbl = 1.0 }, 438 av_assert0(read_size <= atempo->ring || atempo->tempo > 2.0); in yae_load_data() 581 const double fragment_step = atempo->tempo * (double)(atempo->window / 2); in yae_advance_to_next_frag() 696 atempo->tempo; in yae_adjust_position() 1085 int n_out = (int)(0.5 + ((double)n_in) / atempo->tempo); in filter_frame()
|
/third_party/alsa-lib/src/seq/ |
D | seq_local.h | 53 int (*get_queue_tempo)(snd_seq_t *seq, snd_seq_queue_tempo_t * tempo); 54 int (*set_queue_tempo)(snd_seq_t *seq, snd_seq_queue_tempo_t * tempo);
|
D | seq.c | 3532 return info->tempo; in snd_seq_queue_tempo_get_tempo() 3581 void snd_seq_queue_tempo_set_tempo(snd_seq_queue_tempo_t *info, unsigned int tempo) in snd_seq_queue_tempo_set_tempo() argument 3584 info->tempo = tempo; in snd_seq_queue_tempo_set_tempo() 3638 int snd_seq_get_queue_tempo(snd_seq_t *seq, int q, snd_seq_queue_tempo_t * tempo) in snd_seq_get_queue_tempo() argument 3640 assert(seq && tempo); in snd_seq_get_queue_tempo() 3641 memset(tempo, 0, sizeof(snd_seq_queue_tempo_t)); in snd_seq_get_queue_tempo() 3642 tempo->queue = q; in snd_seq_get_queue_tempo() 3643 return seq->ops->get_queue_tempo(seq, tempo); in snd_seq_get_queue_tempo() 3655 int snd_seq_set_queue_tempo(snd_seq_t *seq, int q, snd_seq_queue_tempo_t * tempo) in snd_seq_set_queue_tempo() argument 3657 assert(seq && tempo); in snd_seq_set_queue_tempo() [all …]
|
D | seq_hw.c | 211 static int snd_seq_hw_get_queue_tempo(snd_seq_t *seq, snd_seq_queue_tempo_t * tempo) in snd_seq_hw_get_queue_tempo() argument 214 if (ioctl(hw->fd, SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO, tempo) < 0) { in snd_seq_hw_get_queue_tempo() 221 static int snd_seq_hw_set_queue_tempo(snd_seq_t *seq, snd_seq_queue_tempo_t * tempo) in snd_seq_hw_set_queue_tempo() argument 224 if (ioctl(hw->fd, SNDRV_SEQ_IOCTL_SET_QUEUE_TEMPO, tempo) < 0) { in snd_seq_hw_set_queue_tempo()
|
/third_party/mksh/ |
D | check.pl | 361 $tempo = "${temp_dir}/rto"; 405 unlink($tempi, $tempo, $tempe, $temps); 580 if (!open(STDOUT, "> $tempo")) { 581 print STDERR "$prog: couldn't open $tempo in child - $!\n"; 662 $tmp = &check_output($test{'long-name'}, $tempo, 'stdout',
|
/third_party/gstreamer/gstplugins_bad/gst/midi/ |
D | midiparse.h | 64 guint tempo; member
|
D | midiparse.c | 602 midiparse->tempo = (uspqn ? uspqn : DEFAULT_TEMPO); in handle_meta_event() 603 GST_DEBUG_OBJECT (midiparse, "tempo %u", midiparse->tempo); in handle_meta_event() 846 1000 * midiparse->tempo, midiparse->division); in parse_MTrk() 1006 midiparse->tempo = DEFAULT_TEMPO; in gst_midi_parse_parse_song() 1142 1000 * midiparse->tempo, midiparse->division); in gst_midi_parse_do_play()
|
/third_party/alsa-lib/include/ |
D | seqmid.h | 324 #define snd_seq_change_queue_tempo(seq, q, tempo, ev) \ argument 325 snd_seq_control_queue(seq, q, SND_SEQ_EVENT_TEMPO, tempo, ev)
|
D | seq.h | 472 void snd_seq_queue_tempo_set_tempo(snd_seq_queue_tempo_t *info, unsigned int tempo); 477 int snd_seq_get_queue_tempo(snd_seq_t *handle, int q, snd_seq_queue_tempo_t *tempo); 478 int snd_seq_set_queue_tempo(snd_seq_t *handle, int q, snd_seq_queue_tempo_t *tempo);
|
/third_party/gstreamer/gstreamer/docs/random/slomo/ |
D | controller.txt | 20 - Get tempo interface in base (or core?) and have it modify the
|
/third_party/libsnd/src/ |
D | wav.c | 1483 float q2, tempo ; in wav_read_acid_chunk() local 1501 bytesread += psf_binheader_readf (psf, "422f", &beats, &meter_denom, &meter_numer, &tempo) ; in wav_read_acid_chunk() 1502 snprintf (buffer, sizeof (buffer), "%f", tempo) ; in wav_read_acid_chunk() 1520 psf->loop_info->bpm = tempo ; in wav_read_acid_chunk()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | id3v2.4.0-frames.txt | 52 4.7. Synced tempo codes 164 4.7 SYTC Synchronised tempo codes 826 4.7. Synchronised tempo codes 828 For a more accurate description of the tempo of a musical piece, this 831 tempo codes. Each tempo code consists of one tempo part and one time 832 part. The tempo is in BPM described with one or two bytes. If the 839 The tempo descriptor is followed by a time stamp. Every time the 840 tempo in the music changes, a tempo descriptor may indicate this for 841 the player. All tempo descriptors MUST be sorted in chronological 846 <Header for 'Synchronised tempo codes', ID: "SYTC">
|
D | id3v2.3.0.txt | 396 4.8 SYTC [#sec4.8 Synchronized tempo codes] 1088 4.8. Synchronised tempo codes 1090 For a more accurate description of the tempo of a musical piece this frame 1092 format should be used. Then follows one or more tempo codes. Each tempo code 1093 consists of one tempo part and one time part. The tempo is in BPM described 1099 The tempo descriptor is followed by a time stamp. Every time the tempo in the 1100 music changes, a tempo descriptor may indicate this for the player. All tempo 1105 <Header for 'Synchronised tempo codes', ID: "SYTC">
|
/third_party/alsa-lib/include/sound/uapi/ |
D | asequencer.h | 505 unsigned int tempo; /* current tempo, us/tick */ member
|
/third_party/gstreamer/gstplugins_good/gst/wavparse/ |
D | gstwavparse.c | 1420 gfloat tempo; in gst_wavparse_stream_headers() local 1439 tempo = acid->tempo; in gst_wavparse_stream_headers() 1451 tempo = acid->tempo; in gst_wavparse_stream_headers() 1458 GST_TAG_BEATS_PER_MINUTE, tempo, NULL); in gst_wavparse_stream_headers()
|
/third_party/pulseaudio/po/ |
D | pt_BR.po | 109 " tempo real (disponível apenas como\n" 116 " tempo foi decorrido\n" 118 " quando ociosos e este tempo foi\n" 121 " este tempo foi decorrido\n" 1769 " --process-time=BYTES Requisita o tempo de processo\n" 1773 " --process-time-msec=MSEGUNDOS Requisita a o tempo do processo por\n" 1833 msgstr "Especificação do tempo de processo “%s” inválida" 2103 msgstr[0] "Alocado por todo o tempo: %u bloco contendo %s bytes no total.\n" 2104 msgstr[1] "Alocado por todo o tempo: %u blocos contendo %s bytes no total.\n" 3400 #~ msgstr "Escalonamento em tempo real para o daemon do PulseAudio" [all …]
|