Home
last modified time | relevance | path

Searched refs:cpal (Results 151 – 175 of 432) sorted by relevance

12345678910>>...18

/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/cpal-0.13.4/examples/
H A Denumerate.rs2 extern crate cpal;
4 use cpal::traits::{DeviceTrait, HostTrait};
7 println!("Supported hosts:\n {:?}", cpal::ALL_HOSTS); in main()
8 let available_hosts = cpal::available_hosts(); in main()
13 let host = cpal::host_from_id(host_id)?; in main()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/rodio-0.9.0/src/conversions/
H A Dchannels.rs1 use cpal;
10 from: cpal::ChannelCount,
11 to: cpal::ChannelCount,
13 next_output_sample_pos: cpal::ChannelCount,
28 input: I, from: cpal::ChannelCount, to: cpal::ChannelCount, in new()
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/rodio-0.9.0/src/conversions/
H A Dchannels.rs1 use cpal;
10 from: cpal::ChannelCount,
11 to: cpal::ChannelCount,
13 next_output_sample_pos: cpal::ChannelCount,
28 input: I, from: cpal::ChannelCount, to: cpal::ChannelCount, in new()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/cpal-0.8.2/examples/
H A Denumerate.rs1 extern crate cpal;
4 println!("Default Input Device:\n {:?}", cpal::default_input_device().map(|e| e.name())); in main()
5 println!("Default Output Device:\n {:?}", cpal::default_output_device().map(|e| e.name())); in main()
7 let devices = cpal::devices(); in main()
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/cpal-0.8.2/examples/
H A Denumerate.rs1 extern crate cpal;
4 println!("Default Input Device:\n {:?}", cpal::default_input_device().map(|e| e.name()));
5 println!("Default Output Device:\n {:?}", cpal::default_output_device().map(|e| e.name()));
7 let devices = cpal::devices();
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/rodio-0.9.0/src/
H A Dengine.rs8 use cpal::Device;
9 use cpal::EventLoop;
10 use cpal::Sample as CpalSample;
11 use cpal::StreamData;
12 use cpal::StreamId;
13 use cpal::UnknownTypeOutputBuffer;
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/rodio-0.9.0/src/
H A Dengine.rs8 use cpal::Device;
9 use cpal::EventLoop;
10 use cpal::Sample as CpalSample;
11 use cpal::StreamData;
12 use cpal::StreamId;
13 use cpal::UnknownTypeOutputBuffer;
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/cpal-0.13.4/
H A DREADME.md3 …ctions Status](https://github.com/RustAudio/cpal/workflows/cpal/badge.svg)](https://github.com/Rus…
4 …mg.shields.io/crates/v/cpal.svg)](https://crates.io/crates/cpal) [![docs.rs](https://docs.rs/cpal/…
32 …sing CPAL with WASM, please see [this guide](https://github.com/RustAudio/cpal/wiki/Setting-up-a-n…
93 host = cpal::host_from_id(cpal::HostId::Asio).expect("failed to initialise ASIO host");
109 cpal = { version = "*", features = ["asio"] }
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/cpal-0.13.4/
H A DREADME.md3 …ctions Status](https://github.com/RustAudio/cpal/workflows/cpal/badge.svg)](https://github.com/Rus…
4 …mg.shields.io/crates/v/cpal.svg)](https://crates.io/crates/cpal) [![docs.rs](https://docs.rs/cpal/…
32 …sing CPAL with WASM, please see [this guide](https://github.com/RustAudio/cpal/wiki/Setting-up-a-n…
93 host = cpal::host_from_id(cpal::HostId::Asio).expect("failed to initialise ASIO host");
109 cpal = { version = "*", features = ["asio"] }
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/rodio-0.14.0/src/conversions/
H A Dchannels.rs8 from: cpal::ChannelCount,
9 to: cpal::ChannelCount,
11 next_output_sample_pos: cpal::ChannelCount,
27 from: cpal::ChannelCount, in new()
28 to: cpal::ChannelCount, in new()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/rodio-0.14.0/src/conversions/
H A Dchannels.rs8 from: cpal::ChannelCount,
9 to: cpal::ChannelCount,
11 next_output_sample_pos: cpal::ChannelCount,
27 from: cpal::ChannelCount, in new()
28 to: cpal::ChannelCount, in new()
/dports/print/py-fonttools/fonttools-4.28.2/Tests/colorLib/
H A Dbuilder_test.py80 assert cpal.tableTag == "CPAL"
81 assert cpal.version == 0
84 assert len(cpal.palettes) == 3
141 assert cpal.version == 1
146 assert cpal.paletteLabels == [cpal.NO_NAME_ID] * len(palettes)
147 assert cpal.paletteEntryLabels == [cpal.NO_NAME_ID] * cpal.numPaletteEntries
167 cpal = builder.buildCPAL(
175 assert cpal.version == 1
179 assert cpal.paletteTypes == [cpal.DEFAULT_PALETTE_TYPE] * len(palettes)
180 assert cpal.paletteLabels == [256, 257, cpal.NO_NAME_ID]
[all …]
/dports/print/py-fonttools/fonttools-4.28.2/Lib/fontTools/colorLib/
H A Dbuilder.py335 cpal = C_P_A_L_.table_C_P_A_L_()
336 cpal.numPaletteEntries = len(palettes[0])
338 cpal.palettes = []
355 cpal.palettes.append(colors)
358 cpal.version = 1
376 cpal.paletteLabels = buildPaletteLabels(paletteLabels, nameTable)
381 if len(paletteEntryLabels) != cpal.numPaletteEntries:
388 cpal.paletteEntryLabels = [
390 ] * cpal.numPaletteEntries
392 cpal.version = 0
[all …]
/dports/audio/faust/faust-2.37.3/architecture/
H A Dcpal.rs29 extern crate cpal;
30 use cpal::traits::{DeviceTrait, HostTrait, StreamTrait};
109 println!("Supported hosts:\n {:?}", cpal::ALL_HOSTS); in main()
110 let available_hosts = cpal::available_hosts(); in main()
115 let host = cpal::host_from_id(host_id)?; in main()
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/cpal-0.8.2/
H A DCargo.toml.orig-cargo2 name = "cpal"
6 repository = "https://github.com/tomaka/cpal"
7 documentation = "https://docs.rs/cpal"
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/cpal-0.8.2/
H A DCargo.toml.orig-cargo2 name = "cpal"
6 repository = "https://github.com/tomaka/cpal"
7 documentation = "https://docs.rs/cpal"
/dports/math/R-cran-NMF/NMF/R/
H A Dcolorcode.R63 cpal <- c('RdYlBu2', 'rainbow', 'heat', 'topo', 'terrain', 'cm', 'gray', 'grey') vector
64 i <- pmatch(x, cpal)
72 , paste("'", cpal ,"'", sep='', collapse=', ')
75 x <- cpal[i]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/cpal-0.8.2/.circleci/
H A Dconfig.yml6 working_directory: ~/cpal
21 working_directory: ~/cpal
36 working_directory: ~/cpal
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/cpal-0.8.2/.circleci/
H A Dconfig.yml6 working_directory: ~/cpal
21 working_directory: ~/cpal
36 working_directory: ~/cpal
/dports/graphics/grx/grx249/test/bgi/
H A Dbccbgi.c1618 _PAL cpal; in PlayRGBpalette() local
1627 cpal[c][1]=m; in PlayRGBpalette()
1628 cpal[c][2]=0; in PlayRGBpalette()
1633 cpal[c][2]=0; in PlayRGBpalette()
1656 cpal[0][0]=0; in PlayRGBpalette()
1657 cpal[0][1]=0; in PlayRGBpalette()
1658 cpal[0][2]=0; in PlayRGBpalette()
1659 cpal[255][0]=63; in PlayRGBpalette()
1660 cpal[255][1]=63; in PlayRGBpalette()
1661 cpal[255][2]=63; in PlayRGBpalette()
[all …]
/dports/multimedia/lives/lives-3.2.0/src/
H A Dvideodev.c180 int cpal; in lvdev_get_best_format() local
191 cpal = fourccp_to_weedp(format->fourcc, format->bpp, NULL, NULL, NULL, NULL); in lvdev_get_best_format()
193 if (cpal == WEED_PALETTE_END || weed_palette_is_alpha(cpal)) { in lvdev_get_best_format()
204 if (bestp == WEED_PALETTE_END || cpal == palette || weed_palette_is_alpha(bestp) || in lvdev_get_best_format()
205 weed_palette_is_lower_quality(bestp, cpal) || in lvdev_get_best_format()
206 (weed_palette_is_yuv(bestp) && weed_palette_is_rgb(cpal))) { in lvdev_get_best_format()
210 if (palette != WEED_PALETTE_END && bestp == palette && cpal != palette) continue; in lvdev_get_best_format()
213 bestp = cpal; in lvdev_get_best_format()
/dports/audio/ncspot/ncspot-0.9.3/cargo-crates/librespot-playback-0.3.1/
H A DCargo.toml.orig-cargo43 cpal = { version = "0.13", optional = true }
58 rodio-backend = ["rodio", "cpal"]
59 rodiojack-backend = ["rodio", "cpal/jack"]
/dports/print/harfbuzz-hb-view/harfbuzz-3.4.0/test/api/
H A Dtest-ot-color.c100 static hb_face_t *cpal = NULL; variable
353 g_assert (hb_ot_color_has_layers (cpal) == TRUE); in test_hb_ot_color_has_data()
361 g_assert (hb_ot_color_has_palettes (cpal) == TRUE); in test_hb_ot_color_has_data()
369 g_assert (hb_ot_color_has_svg (cpal) == FALSE); in test_hb_ot_color_has_data()
377 g_assert (hb_ot_color_has_png (cpal) == FALSE); in test_hb_ot_color_has_data()
463 cpal = hb_test_open_font_file ("fonts/chromacheck-colr.ttf"); in main()
486 hb_face_destroy (cpal); in main()
/dports/print/harfbuzz/harfbuzz-3.4.0/test/api/
H A Dtest-ot-color.c100 static hb_face_t *cpal = NULL; variable
353 g_assert (hb_ot_color_has_layers (cpal) == TRUE); in test_hb_ot_color_has_data()
361 g_assert (hb_ot_color_has_palettes (cpal) == TRUE); in test_hb_ot_color_has_data()
369 g_assert (hb_ot_color_has_svg (cpal) == FALSE); in test_hb_ot_color_has_data()
377 g_assert (hb_ot_color_has_png (cpal) == FALSE); in test_hb_ot_color_has_data()
463 cpal = hb_test_open_font_file ("fonts/chromacheck-colr.ttf"); in main()
486 hb_face_destroy (cpal); in main()
/dports/print/harfbuzz-icu/harfbuzz-3.4.0/test/api/
H A Dtest-ot-color.c100 static hb_face_t *cpal = NULL; variable
353 g_assert (hb_ot_color_has_layers (cpal) == TRUE); in test_hb_ot_color_has_data()
361 g_assert (hb_ot_color_has_palettes (cpal) == TRUE); in test_hb_ot_color_has_data()
369 g_assert (hb_ot_color_has_svg (cpal) == FALSE); in test_hb_ot_color_has_data()
377 g_assert (hb_ot_color_has_png (cpal) == FALSE); in test_hb_ot_color_has_data()
463 cpal = hb_test_open_font_file ("fonts/chromacheck-colr.ttf"); in main()
486 hb_face_destroy (cpal); in main()

12345678910>>...18