Home
last modified time | relevance | path

Searched refs:preset (Results 26 - 50 of 100) sorted by relevance

1234

/third_party/ffmpeg/libavcodec/
H A Dlibwebpenc_common.c40 { "preset", "Configuration preset", OFFSET(preset), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, WEBP_PRESET_TEXT, VE, "preset" },
41 { "none", "do not use a preset", 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, 0, 0, VE, "preset" },
42 { "default", "default preset", 0, AV_OPT_TYPE_CONST, { .i64 = WEBP_PRESET_DEFAULT }, 0, 0, VE, "preset" },
43 { "picture", "digital picture, like portrait, inner shot", 0, AV_OPT_TYPE_CONST, { .i64 = WEBP_PRESET_PICTURE }, 0, 0, VE, "preset" },
44 { "photo", "outdoor photograph, with natural lighting", 0, AV_OPT_TYPE_CONST, { .i64 = WEBP_PRESET_PHOTO }, 0, 0, VE, "preset" },
[all...]
H A Dlibwebpenc_common.h43 int preset; // configuration preset member
H A Dqsvenc.h54 { "preset", NULL, OFFSET(qsv.preset), AV_OPT_TYPE_INT, { .i64 = MFX_TARGETUSAGE_BALANCED }, MFX_TARGETUSAGE_BEST_QUALITY, MFX_TARGETUSAGE_BEST_SPEED, VE, "preset" }, \
55 { "veryfast", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_SPEED }, INT_MIN, INT_MAX, VE, "preset" }, \
56 { "faster", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_6 }, INT_MIN, INT_MAX, VE, "preset" }, \
57 { "fast", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_5 }, INT_MIN, INT_MAX, VE, "preset" }, \
58 { "medium", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BALANCED }, INT_MIN, INT_MAX, VE, "preset" }, \
59 { "slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_3 }, INT_MIN, INT_MAX, VE, "preset" }, \
60 { "slower", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_2 }, INT_MIN, INT_MAX, VE, "preset" }, \
61 { "veryslow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_QUALITY }, INT_MIN, INT_MAX, VE, "preset" }, \
163 int preset; global() member
[all...]
H A Dnvenc_hevc.c30 { "preset", "Set the encoding preset", OFFSET(preset), AV_OPT_TYPE_INT, { .i64 = PRESET_P4 }, PRESET_DEFAULT, PRESET_P7, VE, "preset" },
32 { "preset", "Set the encoding preset", OFFSET(preset), AV_OPT_TYPE_INT, { .i64 = PRESET_MEDIUM }, PRESET_DEFAULT, PRESET_LOSSLESS_HP, VE, "preset" },
34 { "default", "", 0, AV_OPT_TYPE_CONST, { .i64 = PRESET_DEFAULT }, 0, 0, VE, "preset" },
35 { "slow", "hq 2 passes", 0, AV_OPT_TYPE_CONST, { .i64 = PRESET_SLOW }, 0, 0, VE, "preset" },
[all...]
H A Dlibx265.c51 char *preset; member
142 if (ctx->api->param_default_preset(ctx->params, ctx->preset, ctx->tune) < 0) { in libx265_encode_init()
145 av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", ctx->preset, ctx->tune); in libx265_encode_init()
713 { "preset", "set the x265 preset", OFFSET(preset), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
/kernel/linux/linux-6.6/drivers/hwtracing/coresight/
H A Dcoresight-syscfg-configfs.h19 int preset; member
35 /* container for preset view */
H A Dcoresight-syscfg.c968 /* set the sysfs preset value */
969 void cscfg_config_sysfs_set_preset(int preset) in cscfg_config_sysfs_set_preset() argument
972 cscfg_mgr->sysfs_active_preset = preset; in cscfg_config_sysfs_set_preset()
977 * Used by a device to get the config and preset selected as active in configfs,
980 void cscfg_config_sysfs_get_active_cfg(unsigned long *cfg_hash, int *preset) in cscfg_config_sysfs_get_active_cfg() argument
983 *preset = cscfg_mgr->sysfs_active_preset; in cscfg_config_sysfs_get_active_cfg()
1037 * configuration, using @preset parameters.
1044 * @preset: Preset parameter values to use, 0 for current / default values.
1047 unsigned long cfg_hash, int preset) in cscfg_csdev_enable_active_config()
1083 err = cscfg_csdev_enable_config(config_csdev_active, preset); in cscfg_csdev_enable_active_config()
1046 cscfg_csdev_enable_active_config(struct coresight_device *csdev, unsigned long cfg_hash, int preset) cscfg_csdev_enable_active_config() argument
[all...]
H A Dcoresight-config.h38 * This is related to the number of bits (4) we use to select the preset on
40 * See PMU_FORMAT_ATTR(preset, "config:0-3") in coresight-etm-perf.c
119 * A configuration describes device features in use, and may provide preset
132 * @presets: Array of preset values.
256 int cscfg_csdev_enable_config(struct cscfg_config_csdev *config_csdev, int preset);
/third_party/skia/third_party/externals/libwebp/examples/
H A Dcwebp.c527 printf(" cwebp [-preset <...>] [options] in_file [-o out_file]\n\n"); in HelpLong()
541 printf(" -preset <string> ....... preset setting, one of:\n"); in HelpLong()
544 printf(" -preset must come first, as it overwrites other parameters\n"); in HelpLong()
545 printf(" -z <int> ............... activates lossless preset with given\n" in HelpLong()
841 } else if (!strcmp(argv[c], "-preset") && c + 1 < argc) { in main()
842 WebPPreset preset; in main() local
845 preset = WEBP_PRESET_DEFAULT; in main()
847 preset = WEBP_PRESET_PHOTO; in main()
849 preset in main()
[all...]
/third_party/lame/libmp3lame/
H A Dset_get.h67 int apply_preset(lame_global_flags *, int preset, int enforce);
H A Dlame_global_flags.h100 int preset; member
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DStreamConfiguration.java220 message.append(String.format("%s.preset = %s\n", prefix, in dump()
261 private static boolean matchInputPreset(String text, int preset) { in matchInputPreset() argument
262 return convertInputPresetToText(preset).toLowerCase().equals(text); in matchInputPreset()
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_ethtool.c692 static int __bnx2x_get_preset_regs_len(struct bnx2x *bp, u32 preset) in __bnx2x_get_preset_regs_len() argument
695 return dump_num_registers[0][preset-1]; in __bnx2x_get_preset_regs_len()
697 return dump_num_registers[1][preset-1]; in __bnx2x_get_preset_regs_len()
699 return dump_num_registers[2][preset-1]; in __bnx2x_get_preset_regs_len()
701 return dump_num_registers[3][preset-1]; in __bnx2x_get_preset_regs_len()
703 return dump_num_registers[4][preset-1]; in __bnx2x_get_preset_regs_len()
713 /* Calculate the total preset regs length */ in __bnx2x_get_regs_len()
844 * @preset: the preset value
851 static void bnx2x_read_pages_regs(struct bnx2x *bp, u32 *p, u32 preset) in bnx2x_read_pages_regs() argument
887 __bnx2x_get_preset_regs(struct bnx2x *bp, u32 *p, u32 preset) __bnx2x_get_preset_regs() argument
1019 bnx2x_get_preset_regs_len(struct net_device *dev, u32 preset) bnx2x_get_preset_regs_len() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_ethtool.c692 static int __bnx2x_get_preset_regs_len(struct bnx2x *bp, u32 preset) in __bnx2x_get_preset_regs_len() argument
695 return dump_num_registers[0][preset-1]; in __bnx2x_get_preset_regs_len()
697 return dump_num_registers[1][preset-1]; in __bnx2x_get_preset_regs_len()
699 return dump_num_registers[2][preset-1]; in __bnx2x_get_preset_regs_len()
701 return dump_num_registers[3][preset-1]; in __bnx2x_get_preset_regs_len()
703 return dump_num_registers[4][preset-1]; in __bnx2x_get_preset_regs_len()
713 /* Calculate the total preset regs length */ in __bnx2x_get_regs_len()
844 * @preset: the preset value
851 static void bnx2x_read_pages_regs(struct bnx2x *bp, u32 *p, u32 preset) in bnx2x_read_pages_regs() argument
887 __bnx2x_get_preset_regs(struct bnx2x *bp, u32 *p, u32 preset) __bnx2x_get_preset_regs() argument
1019 bnx2x_get_preset_regs_len(struct net_device *dev, u32 preset) bnx2x_get_preset_regs_len() argument
[all...]
/third_party/cups-filters/filter/pdftopdf/
H A Dnup.h31 static void preset(int nup,NupParameters &ret);
/third_party/ffmpeg/libavfilter/
H A Dvf_curves.c46 enum preset { enum
63 int preset; member
87 { "preset", "select a color curves preset", OFFSET(preset), AV_OPT_TYPE_INT, {.i64=PRESET_NONE}, PRESET_NONE, NB_PRESETS-1, FLAGS, "preset_name" },
479 //if (!allp && curves->preset != PRESET_NONE && curves_presets[curves->preset].all) in curves_init()
480 // allp = curves_presets[curves->preset].all; in curves_init()
498 if (curves->preset != PRESET_NONE) { in curves_init()
500 if (!pts[n] && curves_presets[curves->preset] in curves_init()
[all...]
/third_party/python/Lib/test/
H A Dtest_lzma.py30 self.assertRaises(TypeError, LZMACompressor, preset="asdf")
34 # Can't specify a preset and a custom filter chain at the same time.
36 LZMACompressor(preset=7, filters=[{"id": lzma.FILTER_LZMA2}])
393 self.assertRaises(TypeError, lzma.compress, b"", preset="blah")
395 # Can't specify a preset and a custom filter chain at the same time.
397 lzma.compress(b"", preset=3, filters=[{"id": lzma.FILTER_LZMA2}])
636 LZMAFile(BytesIO(), "w", preset=4.39)
638 LZMAFile(BytesIO(), "w", preset=10)
640 LZMAFile(BytesIO(), "w", preset=23)
642 LZMAFile(BytesIO(), "w", preset
[all...]
/kernel/linux/linux-5.10/sound/soc/codecs/
H A Dhdac_hda.c436 ret = snd_hda_codec_set_name(hcodec, hcodec->preset->name); in hdac_hda_codec_probe()
438 dev_err(&hdev->dev, "name failed %s\n", hcodec->preset->name); in hdac_hda_codec_probe()
448 patch = (hda_codec_patch_t)hcodec->preset->driver_data; in hdac_hda_codec_probe()
/kernel/linux/linux-6.6/sound/soc/codecs/
H A Dhdac_hda.c444 ret = snd_hda_codec_set_name(hcodec, hcodec->preset->name); in hdac_hda_codec_probe()
446 dev_err(&hdev->dev, "name failed %s\n", hcodec->preset->name); in hdac_hda_codec_probe()
456 patch = (hda_codec_patch_t)hcodec->preset->driver_data; in hdac_hda_codec_probe()
H A Dhda.c203 ret = snd_hda_codec_set_name(codec, codec->preset->name); in hda_codec_probe()
205 dev_err(&hdev->dev, "name failed %s\n", codec->preset->name); in hda_codec_probe()
215 patch = (hda_codec_patch_t)codec->preset->driver_data; in hda_codec_probe()
/third_party/zlib/contrib/pascal/
H A Dexample.pas447 * Test deflate with preset dictionary
481 * Test inflate with a preset dictionary
592 WriteLn('** Testing deflate and inflate with preset dictionary');
/kernel/linux/linux-5.10/include/sound/
H A Dsoundfont.h29 /* The following deals with preset numbers (programs) */
103 int preset, int bank,
/kernel/linux/linux-6.6/include/sound/
H A Dsoundfont.h29 /* The following deals with preset numbers (programs) */
103 int preset, int bank,
/third_party/lame/
H A Dlame.bat21 set OPTS=--preset cd
/third_party/skia/third_party/externals/libwebp/src/webp/
H A Dencode.h87 WEBP_HINT_DEFAULT = 0, // default preset.
158 WEBP_PRESET_DEFAULT = 0, // default preset.
179 // set of parameters (referred to by 'preset') and a given quality factor.
183 WebPPreset preset, float quality) { in WebPConfigPreset()
184 return WebPConfigInitInternal(config, preset, quality, in WebPConfigPreset()
182 WebPConfigPreset(WebPConfig* config, WebPPreset preset, float quality) WebPConfigPreset() argument

Completed in 20 milliseconds

1234