Home
last modified time | relevance | path

Searched refs:hound (Results 1 – 25 of 826) sorted by relevance

12345678910>>...34

/dports/games/qudos/QuDos-0.40.1-src/src/mods/zaero/
H A Dz_hound.c619 edict_t *hound; in hound_createHound() local
621 hound = G_Spawn(); in hound_createHound()
632 hound->solid = SOLID_BBOX; in hound_createHound()
639 hound->owner = self; in hound_createHound()
640 hound->yaw_speed = 30; in hound_createHound()
645 hound->gib_health = -50; in hound_createHound()
646 hound->mass = 250; in hound_createHound()
648 hound->pain = hound_pain; in hound_createHound()
649 hound->die = hound_die; in hound_createHound()
668 gi.linkentity (hound); in hound_createHound()
[all …]
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/hound-3.4.0/examples/
H A Drms.rs18 extern crate hound;
24 fn compute_rms<S, R>(reader: &mut hound::WavReader<R>) -> f64 in compute_rms()
27 S: hound::Sample, in compute_rms()
40 let mut reader = hound::WavReader::open(&fname).unwrap(); in main()
42 hound::SampleFormat::Float => compute_rms::<f32, _>(&mut reader), in main()
43 hound::SampleFormat::Int => compute_rms::<i32, _>(&mut reader), in main()
H A Dappend.rs20 extern crate hound;
23 let spec = hound::WavSpec { in main()
27 sample_format: hound::SampleFormat::Int, in main()
33 true => hound::WavWriter::append(path).unwrap(), in main()
34 false => hound::WavWriter::create(path, spec).unwrap(), in main()
H A Dcpal.rs15 extern crate hound;
24 let mut reader = hound::WavReader::open(fname).unwrap(); in main()
83 fn matches_format(format: &cpal::Format, spec: &hound::WavSpec) -> bool { in matches_format()
94 (16, hound::SampleFormat::Int) => Some(cpal::SampleFormat::I16), in matches_format()
95 (32, hound::SampleFormat::Float) => Some(cpal::SampleFormat::F32), in matches_format()
H A Dmean.rs25 extern crate hound;
31 let mut reader = hound::WavReader::open(&fname).unwrap(); in main()
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/cpal-0.13.4/examples/
H A Drecord_wav.rs8 extern crate hound;
100 let writer = hound::WavWriter::create(PATH, spec)?; in main()
141 fn sample_format(format: cpal::SampleFormat) -> hound::SampleFormat { in sample_format()
143 cpal::SampleFormat::U16 => hound::SampleFormat::Int, in sample_format()
144 cpal::SampleFormat::I16 => hound::SampleFormat::Int, in sample_format()
145 cpal::SampleFormat::F32 => hound::SampleFormat::Float, in sample_format()
149 fn wav_spec_from_config(config: &cpal::SupportedStreamConfig) -> hound::WavSpec { in wav_spec_from_config()
150 hound::WavSpec { in wav_spec_from_config()
158 type WavWriterHandle = Arc<Mutex<Option<hound::WavWriter<BufWriter<File>>>>>;
163 U: cpal::Sample + hound::Sample, in write_input_data()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/cpal-0.13.4/examples/
H A Drecord_wav.rs8 extern crate hound;
100 let writer = hound::WavWriter::create(PATH, spec)?; in main()
141 fn sample_format(format: cpal::SampleFormat) -> hound::SampleFormat { in sample_format()
143 cpal::SampleFormat::U16 => hound::SampleFormat::Int, in sample_format()
144 cpal::SampleFormat::I16 => hound::SampleFormat::Int, in sample_format()
145 cpal::SampleFormat::F32 => hound::SampleFormat::Float, in sample_format()
149 fn wav_spec_from_config(config: &cpal::SupportedStreamConfig) -> hound::WavSpec { in wav_spec_from_config()
150 hound::WavSpec { in wav_spec_from_config()
158 type WavWriterHandle = Arc<Mutex<Option<hound::WavWriter<BufWriter<File>>>>>;
163 U: cpal::Sample + hound::Sample, in write_input_data()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/cpal-0.8.2/examples/
H A Drecord_wav.rs6 extern crate hound;
22 let writer = hound::WavWriter::create(PATH, spec).unwrap(); in main()
80 fn sample_format(format: cpal::SampleFormat) -> hound::SampleFormat { in sample_format()
82 cpal::SampleFormat::U16 => hound::SampleFormat::Int, in sample_format()
83 cpal::SampleFormat::I16 => hound::SampleFormat::Int, in sample_format()
84 cpal::SampleFormat::F32 => hound::SampleFormat::Float, in sample_format()
88 fn wav_spec_from_format(format: &cpal::Format) -> hound::WavSpec { in wav_spec_from_format()
89 hound::WavSpec { in wav_spec_from_format()
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/cpal-0.8.2/examples/
H A Drecord_wav.rs6 extern crate hound;
22 let writer = hound::WavWriter::create(PATH, spec).unwrap(); in main()
80 fn sample_format(format: cpal::SampleFormat) -> hound::SampleFormat { in sample_format()
82 cpal::SampleFormat::U16 => hound::SampleFormat::Int, in sample_format()
83 cpal::SampleFormat::I16 => hound::SampleFormat::Int, in sample_format()
84 cpal::SampleFormat::F32 => hound::SampleFormat::Float, in sample_format()
88 fn wav_spec_from_format(format: &cpal::Format) -> hound::WavSpec { in wav_spec_from_format()
89 hound::WavSpec { in wav_spec_from_format()
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/hound-3.4.0/
H A Dreadme.md22 use hound;
24 let spec = hound::WavSpec {
28 sample_format: hound::SampleFormat::Int,
30 let mut writer = hound::WavWriter::create("sine.wav", spec).unwrap();
45 use hound;
47 let mut reader = hound::WavReader::open("testsamples/pop.wav").unwrap();
79 [ci-img]: https://travis-ci.org/ruuda/hound.svg?branch=master
80 [ci]: https://travis-ci.org/ruuda/hound
81 [crate-img]: https://img.shields.io/crates/v/hound.svg
82 [crate]: https://crates.io/crates/hound
[all …]
H A DCargo.toml3 name = "hound"
11 homepage = "https://github.com/ruuda/hound"
12 repository = "https://github.com/ruuda/hound"
13 documentation = "https://docs.rs/hound"
16 travis-ci = { repository = "ruuda/hound", branch = "v3.4.0" }
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/claxon-0.4.3/examples/
H A Ddecode_simple.rs13 extern crate hound;
21 let spec = hound::WavSpec { in decode_file()
25 sample_format: hound::SampleFormat::Int, in decode_file()
29 let opt_wav_writer = hound::WavWriter::create(fname_wav, spec); in decode_file()
H A Ddecode.rs13 extern crate hound;
16 use hound::{WavSpec, WavWriter};
31 sample_format: hound::SampleFormat::Int, in decode_file()
H A Ddecode_ogg.rs14 extern crate hound;
24 use hound::{WavSpec, WavWriter};
50 sample_format: hound::SampleFormat::Int, in decode_file()
H A Ddecode_mp4.rs12 extern crate hound;
23 use hound::{WavSpec, WavWriter};
50 sample_format: hound::SampleFormat::Int, in decode_file()
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/claxon-0.4.3/examples/
H A Ddecode_simple.rs13 extern crate hound;
21 let spec = hound::WavSpec { in decode_file()
25 sample_format: hound::SampleFormat::Int, in decode_file()
29 let opt_wav_writer = hound::WavWriter::create(fname_wav, spec); in decode_file()
H A Ddecode.rs13 extern crate hound;
16 use hound::{WavSpec, WavWriter};
31 sample_format: hound::SampleFormat::Int, in decode_file()
H A Ddecode_ogg.rs14 extern crate hound;
24 use hound::{WavSpec, WavWriter};
50 sample_format: hound::SampleFormat::Int, in decode_file()
H A Ddecode_mp4.rs12 extern crate hound;
23 use hound::{WavSpec, WavWriter};
50 sample_format: hound::SampleFormat::Int, in decode_file()
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/dat/des/serial/
H A Dgnoll_camp.des35 MONS: jackal / hound / wolf w:1
62 MONS: jackal w:20 / hound / wolf w:1 / nothing w:5
84 MONS: hound / wolf w:1 / nothing w:50
85 MONS: hound / wolf w:1
113 MONS: jackal / hound / wolf w:1
143 MONS: jackal / hound / wolf w:1
177 MONS: gnoll, jackal / hound / wolf w:1
196 MONS: gnoll, jackal / hound / wolf w:1 / nothing w:20
211 MONS: gnoll, hound / wolf w:2
265 MONS: hound / wolf w:2
/dports/games/mangband/mangband-1.5.3/lib/pref/
H A Dfont-tng.prf403 # 193 --> Light hound
406 # 194 --> Dark hound
430 # 203 --> Clear hound
472 # 221 --> Fire hound
475 # 222 --> Cold hound
478 # 223 --> Energy hound
505 # 238 --> Earth hound
508 # 239 --> Air hound
514 # 241 --> Water hound
640 # 295 --> Nexus hound
[all …]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/rodio-0.9.0/
H A DCargo.toml.orig-cargo14 hound = { version = "3.3.1", optional = true }
25 wav = ["hound"]
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/rodio-0.9.0/
H A DCargo.toml.orig-cargo14 hound = { version = "3.3.1", optional = true }
25 wav = ["hound"]
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/rodio-0.14.0/
H A DCargo.toml.orig-cargo15 hound = { version = "3.3.1", optional = true }
24 wav = ["hound"]
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/rodio-0.14.0/
H A DCargo.toml.orig-cargo15 hound = { version = "3.3.1", optional = true }
24 wav = ["hound"]

12345678910>>...34