Searched refs:preset (Results 1 - 25 of 94) sorted by relevance

1234

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/liblzma/common/
H A Deasy_decoder_memusage.c17 lzma_easy_decoder_memusage(uint32_t preset)
20 if (lzma_easy_preset(&opt_easy, preset))
H A Deasy_encoder_memusage.c17 lzma_easy_encoder_memusage(uint32_t preset)
20 if (lzma_easy_preset(&opt_easy, preset))
H A Deasy_encoder.c18 lzma_easy_encoder(lzma_stream *strm, uint32_t preset, lzma_check check)
21 if (lzma_easy_preset(&opt_easy, preset))
H A Deasy_preset.h30 /// Set *easy to the settings given by the preset. Returns true on error,
32 extern bool lzma_easy_preset(lzma_options_easy *easy, uint32_t preset);
H A Deasy_preset.c17 lzma_easy_preset(lzma_options_easy *opt_easy, uint32_t preset) argument
19 if (lzma_lzma_preset(&opt_easy->opt_lzma, preset))
H A Deasy_buffer_encoder.c17 lzma_easy_buffer_encode(uint32_t preset, lzma_check check,
22 if (lzma_easy_preset(&opt_easy, preset))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/liblzma/lzma/
H A Dlzma_encoder_presets.c17 lzma_lzma_preset(lzma_options_lzma *options, uint32_t preset)
19 const uint32_t level = preset & LZMA_PRESET_LEVEL_MASK;
20 const uint32_t flags = preset & ~LZMA_PRESET_LEVEL_MASK;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/liblzma/api/lzma/
H A Dcontainer.h25 * \brief Default compression preset
27 * It's not straightforward to recommend a default preset, because in some
35 * \brief Mask for preset level
37 * This is useful only if you need to extract the level from the preset
50 * \brief Extreme compression preset
52 * This flag modifies the preset to make the encoding significantly slower
58 * a little but only at the lowest preset levels (0-3).
68 * \param preset Compression preset (level and possible flags)
71 * preset whe
[all...]
H A Dlzma.h225 * a preset dictionary. It is useful when compressing many
227 * each other. The preset dictionary should contain typical
229 * probable strings should be near the end of the preset dictionary.
234 * liblzma allow preset dictionary when decoding, thus if
235 * you create a .xz or .lzma file with preset dictionary, it
237 * future, the .xz format will likely get support for preset
243 * \brief Size of the preset dictionary
245 * Specifies the size of the preset dictionary. If the size is
251 * no preset dictionary is used (identical to only setting
403 * \brief Set a compression preset t
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/media/video/
H A Dtvp7002.c348 u32 preset; member in struct:tvp7002_preset_definition
597 * tvp7002_s_dv_preset() - Set digital video preset
601 * Set the digital video preset for a TVP7002 decoder device.
608 u32 preset; local
612 preset = tvp7002_presets[i].preset;
613 if (preset == dv_preset->preset) {
716 error = v4l_fill_dv_preset_info(device->current_preset->preset, &e_preset);
777 * tvp7002_query_dv_preset() - query DV preset
1001 tvp7002_enum_dv_presets(struct v4l2_subdev *sd, struct v4l2_dv_enum_preset *preset) argument
1071 struct v4l2_dv_preset preset; local
[all...]
H A Dv4l2-common.c634 * v4l_fill_dv_preset_info - fill description of a digital video preset
635 * @preset - preset value
638 * drivers can use this helper function to fill description of dv preset
641 int v4l_fill_dv_preset_info(u32 preset, struct v4l2_dv_enum_preset *info) argument
669 if (info == NULL || preset >= ARRAY_SIZE(dv_presets))
672 info->preset = preset;
673 info->width = dv_presets[preset].width;
674 info->height = dv_presets[preset]
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/media/video/
H A Dtvp7002.c348 u32 preset; member in struct:tvp7002_preset_definition
597 * tvp7002_s_dv_preset() - Set digital video preset
601 * Set the digital video preset for a TVP7002 decoder device.
608 u32 preset; local
612 preset = tvp7002_presets[i].preset;
613 if (preset == dv_preset->preset) {
716 error = v4l_fill_dv_preset_info(device->current_preset->preset, &e_preset);
777 * tvp7002_query_dv_preset() - query DV preset
1001 tvp7002_enum_dv_presets(struct v4l2_subdev *sd, struct v4l2_dv_enum_preset *preset) argument
1071 struct v4l2_dv_preset preset; local
[all...]
H A Dv4l2-common.c634 * v4l_fill_dv_preset_info - fill description of a digital video preset
635 * @preset - preset value
638 * drivers can use this helper function to fill description of dv preset
641 int v4l_fill_dv_preset_info(u32 preset, struct v4l2_dv_enum_preset *info) argument
669 if (info == NULL || preset >= ARRAY_SIZE(dv_presets))
672 info->preset = preset;
673 info->width = dv_presets[preset].width;
674 info->height = dv_presets[preset]
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/doc/examples/
H A Dxz_pipe_comp.c49 uint32_t preset = COMPRESSION_LEVEL | (COMPRESSION_EXTREME ? LZMA_PRESET_EXTREME : 0); local
65 ret_xz = lzma_easy_encoder (&strm, preset, check);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/netatalk-3.0.5/libatalk/util/
H A Dnetatalk_conf.c563 * @param preset (r) default preset, may be NULL
571 const char *preset)
586 LOG(log_debug, logtype_afpd, "createvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
587 name, path, preset ? preset : "-");
627 if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
629 if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
631 if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
633 if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NUL
566 creatvol(AFPObj *obj, const struct passwd *pwd, const char *section, const char *name, const char *path_in, const char *preset) argument
1004 const char *preset, *default_preset, *p, *basedir; local
1686 const char *preset, *default_preset; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/netatalk-3.0.5/libatalk/util/
H A Dnetatalk_conf.c563 * @param preset (r) default preset, may be NULL
571 const char *preset)
586 LOG(log_debug, logtype_afpd, "createvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
587 name, path, preset ? preset : "-");
627 if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
629 if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
631 if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
633 if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NUL
566 creatvol(AFPObj *obj, const struct passwd *pwd, const char *section, const char *name, const char *path_in, const char *preset) argument
1004 const char *preset, *default_preset, *p, *basedir; local
1686 const char *preset, *default_preset; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/netatalk-3.0.5/libatalk/util/
H A Dnetatalk_conf.c563 * @param preset (r) default preset, may be NULL
571 const char *preset)
586 LOG(log_debug, logtype_afpd, "createvol(volume: '%s', path: \"%s\", preset: '%s'): BEGIN",
587 name, path, preset ? preset : "-");
627 if (accessvol(obj, getoption(obj->iniconfig, section, "invalid users", preset, NULL), pwd->pw_name) == 1)
629 if (accessvol(obj, getoption(obj->iniconfig, section, "valid users", preset, NULL), pwd->pw_name) == 0)
631 if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts deny", preset, NULL)) == 1)
633 if (hostaccessvol(obj, section, getoption(obj->iniconfig, section, "hosts allow", preset, NUL
566 creatvol(AFPObj *obj, const struct passwd *pwd, const char *section, const char *name, const char *path_in, const char *preset) argument
1004 const char *preset, *default_preset, *p, *basedir; local
1686 const char *preset, *default_preset; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/
H A Dlibdiracenc.c89 * Dirac video preset table. Ensure that this tables matches up correctly
113 * Returns the video format preset matching the input video dimensions and
133 VideoFormat preset; local
135 /* get Dirac preset */
136 preset = GetDiracVideoFormatPreset(avccontext);
139 dirac_encoder_context_init(&(p_dirac_params->enc_ctx), preset);
193 if ((preset > VIDEO_FORMAT_QCIF || preset < VIDEO_FORMAT_QSIF525) &&
H A Dlibschroedingerenc.c105 SchroVideoFormatEnum preset; local
120 preset = ff_get_schro_video_format_preset(avccontext);
123 schro_video_format_set_std_video_format(p_schro_params->format, preset);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/
H A Dlibdiracenc.c89 * Dirac video preset table. Ensure that this tables matches up correctly
113 * Returns the video format preset matching the input video dimensions and
133 VideoFormat preset; local
135 /* get Dirac preset */
136 preset = GetDiracVideoFormatPreset(avccontext);
139 dirac_encoder_context_init(&(p_dirac_params->enc_ctx), preset);
193 if ((preset > VIDEO_FORMAT_QCIF || preset < VIDEO_FORMAT_QSIF525) &&
H A Dlibschroedingerenc.c105 SchroVideoFormatEnum preset; local
120 preset = ff_get_schro_video_format_preset(avccontext);
123 schro_video_format_set_std_video_format(p_schro_params->format, preset);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/
H A Dlibdiracenc.c89 * Dirac video preset table. Ensure that this tables matches up correctly
113 * Returns the video format preset matching the input video dimensions and
133 VideoFormat preset; local
135 /* get Dirac preset */
136 preset = GetDiracVideoFormatPreset(avccontext);
139 dirac_encoder_context_init(&(p_dirac_params->enc_ctx), preset);
193 if ((preset > VIDEO_FORMAT_QCIF || preset < VIDEO_FORMAT_QSIF525) &&
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/sound/
H A Dsoundfont.h42 /* The following deals with preset numbers (programs) */
116 int preset, int bank,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/sound/
H A Dsoundfont.h42 /* The following deals with preset numbers (programs) */
116 int preset, int bank,
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/xz/src/xz/
H A Doptions.c247 message_fatal(_("Unsupported LZMA1/LZMA2 preset: %s"), valuestr);
261 uint32_t preset = valuestr[0] - '0'; local
267 preset |= LZMA_PRESET_EXTREME;
275 if (lzma_lzma_preset(options, preset))
335 { "preset", NULL, UINT64_MAX, 0 },

Completed in 118 milliseconds

1234