Home
last modified time | relevance | path

Searched refs:formats (Results 276 - 300 of 521) sorted by relevance

1...<<1112131415161718192021

/drivers/peripheral/distributed_audio/interface/audio/v1_0/
H A Dtypes.h103 std::vector<uint32_t> formats; member
/third_party/ffmpeg/libavfilter/
H A Dsignature.h48 enum formats { enum
H A Daf_loudnorm.c687 AVFilterFormats *formats; in query_formats() local
704 formats = ff_make_format_list(input_srate); in query_formats()
705 if (!formats) in query_formats()
707 ret = ff_formats_ref(formats, &inlink->outcfg.samplerates); in query_formats()
710 ret = ff_formats_ref(formats, &outlink->incfg.samplerates); in query_formats()
H A Davf_showspectrum.c361 AVFilterFormats *formats = NULL; in query_formats() local
369 /* set input audio formats */ in query_formats()
370 formats = ff_make_format_list(sample_fmts); in query_formats()
371 if ((ret = ff_formats_ref(formats, &inlink->outcfg.formats)) < 0) in query_formats()
378 formats = ff_all_samplerates(); in query_formats()
379 if ((ret = ff_formats_ref(formats, &inlink->outcfg.samplerates)) < 0) in query_formats()
383 formats = ff_make_format_list(pix_fmts); in query_formats()
384 if ((ret = ff_formats_ref(formats, &outlink->incfg.formats)) < in query_formats()
[all...]
H A Davf_showcqt.c1319 AVFilterFormats *formats = NULL; in query_formats() local
1332 /* set input audio formats */ in query_formats()
1333 formats = ff_make_format_list(sample_fmts); in query_formats()
1334 if ((ret = ff_formats_ref(formats, &inlink->outcfg.formats)) < 0) in query_formats()
1341 formats = ff_all_samplerates(); in query_formats()
1342 if ((ret = ff_formats_ref(formats, &inlink->outcfg.samplerates)) < 0) in query_formats()
1346 formats = ff_make_format_list(pix_fmts); in query_formats()
1347 if ((ret = ff_formats_ref(formats, &outlink->incfg.formats)) < in query_formats()
[all...]
H A Dvf_overlay.c29 #include "formats.h"
166 /* overlay formats contains alpha, for avoiding conversion with alpha information loss */ in query_formats()
225 AVFilterFormats *formats; in query_formats() local
263 formats = ff_make_format_list(main_formats); in query_formats()
264 if ((ret = ff_formats_ref(formats, &ctx->inputs[MAIN]->outcfg.formats)) < 0 || in query_formats()
265 (ret = ff_formats_ref(formats, &ctx->outputs[MAIN]->incfg.formats)) < 0) in query_formats()
269 &ctx->inputs[OVERLAY]->outcfg.formats); in query_formats()
/third_party/ffmpeg/libavutil/
H A Dhwcontext_internal.h34 * An array of pixel formats supported by the AVHWFramesContext instances
86 enum AVPixelFormat **formats);
H A Dhwcontext.h389 * must use one of the formats returned by av_hwframe_transfer_get_formats(src,
392 * of the formats returned by av_hwframe_transfer_get_formats(dst,
428 * Get a list of possible source or target formats usable in
433 * @param formats the pointer to the output format list will be written here.
444 enum AVPixelFormat **formats, int flags);
/third_party/mesa3d/src/amd/compiler/
H A Daco_shader_info.h52 uint8_t formats[ACO_MAX_VERTEX_ATTRIBS]; member
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_device.h207 /* Table of formats, indexed by a PIPE format */
208 const struct panfrost_format *formats; member
210 /* Bitmask of supported compressed texture formats */
/third_party/skia/src/utils/win/
H A DSkWGL.h80 * WGL doesn't have precise rules for the ordering of formats returned
82 * formats returned by wglChoosePixelFormat. The rules in decreasing
84 * * Choose formats with the smallest sample count that is >=
85 * desiredSampleCount (or the largest sample count if all formats have
87 * all msaa formats are excluded from consideration.
88 * * Choose formats with the fewest color samples when coverage sampling
90 * * If the above rules leave multiple formats, choose the one that
91 * appears first in the formats array parameter.
93 int selectFormat(const int formats[],
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_acceleration_structure.c900 VkFormat formats[] = { in get_vertices() local
918 for (unsigned f = 0; f < ARRAY_SIZE(formats); ++f) { in get_vertices()
919 if (f + 1 < ARRAY_SIZE(formats)) in get_vertices()
920 nir_push_if(b, nir_ieq_imm(b, format, formats[f])); in get_vertices()
923 switch (formats[f]) { in get_vertices()
942 unsigned components = MIN2(3, vk_format_get_nr_components(formats[f])); in get_vertices()
944 vk_format_get_blocksizebits(formats[f]) / vk_format_get_nr_components(formats[f]); in get_vertices()
949 if (formats[f] == VK_FORMAT_A2B10G10R10_UNORM_PACK32) { in get_vertices()
964 if (util_format_is_snorm(vk_format_to_pipe_format(formats[ in get_vertices()
[all...]
H A Dradv_aco_shader_info.h119 ASSIGN_VS_STATE_FIELD_CP(formats); in radv_aco_convert_vs_prolog_key()
/third_party/pulseaudio/src/utils/
H A Dpactl.c66 *formats = NULL, variable
466 static const char* pa_format_infos_to_json_array(pa_format_info **formats, uint8_t n_formats) { in pa_format_infos_to_json_array() argument
468 if (!formats) { in pa_format_infos_to_json_array()
479 pa_json_encoder_add_element_string(encoder, pa_format_info_snprint(f, sizeof(f), formats[i])); in pa_format_infos_to_json_array()
662 pa_json_encoder_add_member_raw_json(encoder, "formats", pa_format_infos_to_json_array(i->formats, i->n_formats)); in get_sink_info_callback()
725 if (i->formats) { in get_sink_info_callback()
730 printf("\t\t%s\n", pa_format_info_snprint(f, sizeof(f), i->formats[j])); in get_sink_info_callback()
847 pa_json_encoder_add_member_raw_json(encoder, "formats", pa_format_infos_to_json_array(i->formats, in get_source_info_callback()
[all...]
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_kopper.c235 cswap->scci.imageFormat = cdt->formats[0]; in kopper_CreateSwapchain()
252 if (cdt->formats[1]) in kopper_CreateSwapchain()
406 cdt->formats[0] = zink_get_format(screen, format); in zink_kopper_displaytarget_create()
411 cdt->format_list.pViewFormats = cdt->formats; in zink_kopper_displaytarget_create()
413 cdt->formats[1] = zink_get_format(screen, srgb); in zink_kopper_displaytarget_create()
/third_party/mesa3d/src/intel/vulkan/
H A Danv_formats.c141 /* HINT: For array formats, the ISL name should match the VK name. For
142 * packed formats, they should have the channels in reverse order from each
143 * other. The reason for this is that, for packed formats, the ISL (and
144 * bspec) names are in LSB -> MSB order while VK formats are MSB -> LSB.
386 /* TODO: it is possible to enable the following 2 formats, but that
387 * requires further refactoring of how we handle multiplanar formats.
418 const struct anv_format *formats; member
421 [0] = { .formats = main_formats,
423 [_VK_EXT_4444_formats_number] = { .formats = _4444_formats,
425 [_VK_KHR_sampler_ycbcr_conversion_number] = { .formats
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
H A DvktTextureFilteringExplicitLodTests.cpp1227 new TestCaseGroup(testCtx, "formats")); in create2DFormatTests()
1229 const VkFormat formats[] = in create2DFormatTests() local
1259 for (deUint32 formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); ++formatNdx) in create2DFormatTests()
1261 const std::string prefix = de::toLower(std::string(getFormatName(formats[formatNdx])).substr(10)); in create2DFormatTests()
1267 mapVkFormat(formats[formatNdx]), in create2DFormatTests()
1281 mapVkFormat(formats[formatNdx]), in create2DFormatTests()
/third_party/skia/src/gpu/d3d/
H A DGrD3DCaps.cpp90 // D3D12 can resolve between typeless and non-typeless formats, but we are not using in canCopyAsResolve()
91 // typeless formats. It's not possible to resolve within the same format family otherwise. in canCopyAsResolve()
305 void GrD3DCaps::setColorType(GrColorType colorType, std::initializer_list<DXGI_FORMAT> formats) { in setColorType() argument
314 for (auto it = formats.begin(); it != formats.end(); ++it) { in setColorType()
325 for (auto it = formats.begin(); it != formats.end(); ++it) { in setColorType()
359 // Go through all the formats and init their support surface and data GrColorTypes. in initFormatTable()
669 // formats are passed into the setColorType function indicates the priority in selecting which in initFormatTable()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
H A DvktTextureFilteringExplicitLodTests.cpp1229 new TestCaseGroup(testCtx, "formats", "Various image formats")); in create2DFormatTests()
1231 const VkFormat formats[] = in create2DFormatTests() local
1261 for (deUint32 formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); ++formatNdx) in create2DFormatTests()
1263 const std::string prefix = de::toLower(std::string(getFormatName(formats[formatNdx])).substr(10)); in create2DFormatTests()
1270 mapVkFormat(formats[formatNdx]), in create2DFormatTests()
1285 mapVkFormat(formats[formatNdx]), in create2DFormatTests()
/third_party/skia/third_party/externals/libpng/contrib/libtests/
H A Dpngstest.c370 /* A name table for all the formats - defines the format of the '+' arguments to
470 /* Bitset/test functions for formats */
805 /* Basic image formats; control the data but not the layout thereof. */
1145 /* Conversion between pixel formats. The code above effectively eliminates the
1994 * In some cases the conversion between sRGB formats goes via a linear
2595 * to * give image 'b'. The formats may have been changed.
2813 /* The following are used only if the formats match, except that in compare_two_images()
2814 * 'bchannels' is a flag for matching formats. btoa[x] says, for each in compare_two_images()
2993 /* Print both original and output formats. */ in read_file()
3445 test_one_file(const char *file_name, format_list *formats, png_uint_3 argument
3491 format_list formats; main() local
[all...]
/third_party/alsa-lib/src/topology/
H A Dpcm.c327 caps->formats |= 1ull << format; in split_format()
430 if (strcmp(id, "formats") == 0) { in tplg_parse_stream_caps()
548 if (err >= 0 && sc->formats) { in tplg_save_stream_caps()
552 if (sc->formats & (1ULL << i)) { in tplg_save_stream_caps()
1761 caps->formats = caps_tpl->formats; in tplg_add_stream_caps()
2085 cap->formats = pcm->caps[i].formats; in tplg_decode_pcm()
/drivers/hdf_core/framework/model/audio/core/include/
H A Daudio_host.h139 uint64_t formats; member
/drivers/hdf_core/framework/model/audio/usb/include/
H A Daudio_usb_linux.h98 uint64_t formats; /* format bits */ member
/third_party/ffmpeg/tests/fate/
H A Dfits.mak7 #mapping of fits file formats to png filenames
/third_party/alsa-lib/include/
H A Dtopology.h534 * formats "S24_LE,S16_LE" # Supported formats
542 * The supported formats use the same naming convention as the driver macros.
569 * The supported formats use the same naming convention as the driver macros.
985 uint64_t formats; /*!< supported formats SNDRV_PCM_FMTBIT_* */ member
1021 * hardware config, i.e. hardware audio formats.

Completed in 36 milliseconds

1...<<1112131415161718192021