/third_party/backends/backend/genesys/ |
H A D | image.cpp | 100 PixelFormat out_format, std::size_t count) in convert_pixel_row_impl() 102 switch (out_format) { in convert_pixel_row_impl() 136 throw SaneException("Unknown pixel format %d", static_cast<unsigned>(out_format)); in convert_pixel_row_impl() 140 std::uint8_t* out_data, PixelFormat out_format, std::size_t count) in convert_pixel_row_format() 142 if (in_format == out_format) { in convert_pixel_row_format() 149 convert_pixel_row_impl<PixelFormat::I1>(in_data, out_data, out_format, count); in convert_pixel_row_format() 153 convert_pixel_row_impl<PixelFormat::RGB111>(in_data, out_data, out_format, count); in convert_pixel_row_format() 157 convert_pixel_row_impl<PixelFormat::I8>(in_data, out_data, out_format, count); in convert_pixel_row_format() 161 convert_pixel_row_impl<PixelFormat::RGB888>(in_data, out_data, out_format, count); in convert_pixel_row_format() 165 convert_pixel_row_impl<PixelFormat::BGR888>(in_data, out_data, out_format, coun in convert_pixel_row_format() 99 convert_pixel_row_impl(const std::uint8_t* in_data, std::uint8_t* out_data, PixelFormat out_format, std::size_t count) convert_pixel_row_impl() argument 139 convert_pixel_row_format(const std::uint8_t* in_data, PixelFormat in_format, std::uint8_t* out_data, PixelFormat out_format, std::size_t count) convert_pixel_row_format() argument [all...] |
H A D | image.h | 60 std::uint8_t* out_data, PixelFormat out_format, std::size_t count);
|
/third_party/skia/buildtools/checkdeps/ |
H A D | graphdeps.py | 46 out_format, 63 out_format: Output format (anything GraphViz dot's -T option supports). 91 self.out_format = out_format 119 if self.out_format == 'dot' and not self.layout_engine: 130 dot_cmd = 'dot -T' + self.out_format 300 dest="out_format", default="dot", 368 if not options.out_file.endswith(options.out_format): 369 options.out_file += '.' + options.out_format 382 out_format [all...] |
/third_party/musl/scripts/ |
H A D | print_so_deps.py | 78 def write_results(self, out_format): 79 if out_format is None: 84 if out_format == "csv": 86 if out_format == "txt": 88 if out_format == "json": 90 if out_format == "dot":
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_aresample.c | 67 enum AVSampleFormat out_format; in query_formats() local 81 av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format); in query_formats() 106 if(out_format != AV_SAMPLE_FMT_NONE) { in query_formats() 107 int formatlist[] = { out_format, -1 }; in query_formats() 134 enum AVSampleFormat out_format; in config_output() local 150 av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format); in config_output() 155 av_assert0(outlink->format == out_format); in config_output()
|
H A D | vf_scale_cuda.c | 195 static av_cold void set_format_info(AVFilterContext *ctx, enum AVPixelFormat in_format, enum AVPixelFormat out_format) in set_format_info() argument 201 s->out_fmt = out_format; in set_format_info() 229 enum AVPixelFormat out_format; in init_processing_chain() local 239 out_format = (s->format == AV_PIX_FMT_NONE) ? in_format : s->format; in init_processing_chain() 246 if (!format_is_supported(out_format)) { in init_processing_chain() 248 av_get_pix_fmt_name(out_format)); in init_processing_chain() 252 set_format_info(ctx, in_format, out_format); in init_processing_chain() 254 if (s->passthrough && in_width == out_width && in_height == out_height && in_format == out_format) { in init_processing_chain() 266 in_format == out_format && s->interp_algo == INTERP_ALGO_DEFAULT) in init_processing_chain()
|
H A D | vf_vpp_qsv.c | 67 enum AVPixelFormat out_format; member 245 vpp->out_format = AV_PIX_FMT_NONE; in vpp_init() 247 vpp->out_format = av_get_pix_fmt(vpp->output_format_str); in vpp_init() 248 if (vpp->out_format == AV_PIX_FMT_NONE) { in vpp_init() 353 if (vpp->out_format == AV_PIX_FMT_NONE) in config_output() 354 vpp->out_format = in_format; in config_output() 355 param.out_sw_format = vpp->out_format; in config_output() 510 inlink->w != outlink->w || inlink->h != outlink->h || in_format != vpp->out_format) in config_output()
|
H A D | vf_scale_npp.c | 526 enum AVPixelFormat out_format; in init_processing_chain() local 539 out_format = (s->format == AV_PIX_FMT_NONE) ? in_format : s->format; in init_processing_chain() 546 if (!format_is_supported(out_format)) { in init_processing_chain() 548 av_get_pix_fmt_name(out_format)); in init_processing_chain() 553 out_deinterleaved_format = get_deinterleaved_format(out_format); in init_processing_chain() 575 if (!s->stages[STAGE_RESIZE].stage_needed && in_format == out_format) in init_processing_chain() 581 if (out_format != out_deinterleaved_format) in init_processing_chain() 598 s->stages[STAGE_INTERLEAVE].out_fmt = out_format; in init_processing_chain()
|
H A D | vf_scale_qsv.c | 167 enum AVPixelFormat out_format; in init_out_pool() local 179 out_format = (s->format == AV_PIX_FMT_NONE) ? in_format : s->format; in init_out_pool() 190 out_frames_ctx->sw_format = out_format; in init_out_pool()
|
H A D | vf_chromakey_cuda.c | 158 static av_cold void set_format_info(AVFilterContext *ctx, enum AVPixelFormat in_format, enum AVPixelFormat out_format) in set_format_info() argument 164 s->out_fmt = out_format; in set_format_info()
|
/third_party/ffmpeg/libavcodec/ |
H A D | audiotoolboxenc.c | 96 AudioStreamBasicDescription out_format; in ffat_update_ctx() local 113 size = sizeof(out_format); in ffat_update_ctx() 116 &size, &out_format)) { in ffat_update_ctx() 117 if (out_format.mFramesPerPacket) in ffat_update_ctx() 118 avctx->frame_size = out_format.mFramesPerPacket; in ffat_update_ctx() 119 if (out_format.mBytesPerPacket && avctx->codec_id == AV_CODEC_ID_ILBC) in ffat_update_ctx() 120 avctx->block_align = out_format.mBytesPerPacket; in ffat_update_ctx() 250 AudioStreamBasicDescription out_format = { in ffat_init_encoder() local 264 out_format.mFramesPerPacket = 8000 * mode / 1000; in ffat_init_encoder() 265 out_format in ffat_init_encoder() [all...] |
H A D | audiotoolboxdec.c | 317 AudioStreamBasicDescription out_format = { in ffat_create_decoder() local 373 avctx->sample_rate = out_format.mSampleRate = in_format.mSampleRate; in ffat_create_decoder() 376 avctx->ch_layout.nb_channels = out_format.mChannelsPerFrame = in_format.mChannelsPerFrame; in ffat_create_decoder() 378 out_format.mBytesPerFrame = in ffat_create_decoder() 379 out_format.mChannelsPerFrame * (out_format.mBitsPerChannel / 8); in ffat_create_decoder() 380 out_format.mBytesPerPacket = in ffat_create_decoder() 381 out_format.mBytesPerFrame * out_format.mFramesPerPacket; in ffat_create_decoder() 386 status = AudioConverterNew(&in_format, &out_format, in ffat_create_decoder() [all...] |
H A D | mpegvideo_enc.c | 650 s->out_format = FMT_MPEG1; in ff_mpv_encode_init() 655 s->out_format = FMT_MPEG1; in ff_mpv_encode_init() 663 s->out_format = FMT_MJPEG; in ff_mpv_encode_init() 672 s->out_format = FMT_SPEEDHQ; in ff_mpv_encode_init() 691 s->out_format = FMT_H261; in ff_mpv_encode_init() 708 s->out_format = FMT_H263; in ff_mpv_encode_init() 713 s->out_format = FMT_H263; in ff_mpv_encode_init() 727 s->out_format = FMT_H263; in ff_mpv_encode_init() 735 s->out_format = FMT_H263; in ff_mpv_encode_init() 740 s->out_format in ff_mpv_encode_init() [all...] |
H A D | mpegpicture.c | 205 static int alloc_picture_tables(AVCodecContext *avctx, Picture *pic, int encoding, int out_format, in alloc_picture_tables() argument 229 if (out_format == FMT_H263 || encoding || in alloc_picture_tables() 255 int chroma_x_shift, int chroma_y_shift, int out_format, in ff_alloc_picture() 281 ret = alloc_picture_tables(avctx, pic, encoding, out_format, in ff_alloc_picture() 253 ff_alloc_picture(AVCodecContext *avctx, Picture *pic, MotionEstContext *me, ScratchpadContext *sc, int shared, int encoding, int chroma_x_shift, int chroma_y_shift, int out_format, int mb_stride, int mb_width, int mb_height, int b8_stride, ptrdiff_t *linesize, ptrdiff_t *uvlinesize) ff_alloc_picture() argument
|
H A D | mpegpicture.h | 101 int chroma_x_shift, int chroma_y_shift, int out_format,
|
H A D | mpegvideo_motion.c | 258 if (!is_mpeg12 && s->out_format == FMT_H263) { in mpeg_motion_internal() 271 } else if (!is_mpeg12 && s->out_format == FMT_H261) { in mpeg_motion_internal() 365 s->out_format == FMT_H261) { in mpeg_motion_internal() 377 if (s->out_format == FMT_MPEG1) in mpeg_motion() 396 if (s->out_format == FMT_MPEG1) in mpeg_motion_field() 984 if (s->out_format == FMT_MPEG1) in ff_mpv_motion()
|
H A D | mpegvideo_dec.c | 251 s->chroma_x_shift, s->chroma_y_shift, s->out_format, in alloc_picture() 483 } else if (s->out_format == FMT_H263 || s->out_format == FMT_H261) { in ff_mpv_frame_start()
|
H A D | mpegvideo.c | 384 if (s->out_format == FMT_H263) { in init_duplicate_context() 628 if (s->out_format == FMT_H263) { in ff_mpv_init_context_frame() 1004 if (s->out_format == FMT_H263) { in mpeg_motion_lowres() 1009 } else if (s->out_format == FMT_H261) { in mpeg_motion_lowres() 1416 #define IS_MPEG12(s) (CONFIG_SMALL ? ((s)->out_format == FMT_MPEG1) : is_mpeg12) in mpv_reconstruct_mb_internal() 1664 if(s->out_format == FMT_MPEG1) { in ff_mpv_reconstruct_mb()
|
H A D | mpegvideo.h | 88 enum OutputFormat out_format; ///< output format member
|
/third_party/googletest/googletest/test/ |
H A D | gtest_list_output_unittest.py | 246 def _GetOutput(self, out_format): 248 'test_out.' + out_format) 254 '%s=%s:%s' % (GTEST_OUTPUT_FLAG, out_format, file_path),
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
H A D | vl_video_buffer.c | 55 enum pipe_format out_format[VL_NUM_COMPONENTS]) in vl_get_video_buffer_formats() 61 out_format[i] = util_format_get_plane_format(format, i); in vl_get_video_buffer_formats() 63 out_format[i] = PIPE_FORMAT_NONE; in vl_get_video_buffer_formats() 66 out_format[0] = PIPE_FORMAT_R8G8_R8B8_UNORM; in vl_get_video_buffer_formats() 68 out_format[0] = PIPE_FORMAT_G8R8_B8R8_UNORM; in vl_get_video_buffer_formats() 54 vl_get_video_buffer_formats(struct pipe_screen *screen, enum pipe_format format, enum pipe_format out_format[VL_NUM_COMPONENTS]) vl_get_video_buffer_formats() argument
|
H A D | vl_stubs.c | 44 enum pipe_format out_format[VL_NUM_COMPONENTS]) in vl_get_video_buffer_formats() 43 vl_get_video_buffer_formats(struct pipe_screen *screen, enum pipe_format format, enum pipe_format out_format[VL_NUM_COMPONENTS]) vl_get_video_buffer_formats() argument
|
H A D | vl_video_buffer.h | 74 enum pipe_format out_format[VL_NUM_COMPONENTS]);
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
H A D | pngstest.c | 1951 * gpc_fn[out_format & BASE_FORMATS][in_format & BASE_FORMATS]; 2066 png_uint_32 in_format, out_format; in transform_from_formats() local 2076 out_format = out_image->image.format; in transform_from_formats() 2083 result->output_8bit = (out_format & PNG_FORMAT_FLAG_LINEAR) == 0; in transform_from_formats() 2090 result->out_gp = get_pixel(out_format); in transform_from_formats() 2095 out_format &= BASE_FORMATS | PNG_FORMAT_FLAG_COLORMAP; in transform_from_formats() 2096 out_base = out_format & BASE_FORMATS; in transform_from_formats() 2101 if (out_format & (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLORMAP)) in transform_from_formats() 2104 in_format, out_format); in transform_from_formats() 2110 result->error_ptr = gpc_error_via_linear[in_format][out_format]; in transform_from_formats() 2350 png_uint_32 out_format = transform->out_image->image.format; logpixel() local [all...] |
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_meta.c | 663 desc.RTVFormats[0] = key->out_format; in dzn_meta_blit_create() 666 desc.DSVFormat = key->out_format; in dzn_meta_blit_create()
|