/third_party/skia/buildtools/checkdeps/ |
D | graphdeps.py | 46 out_format, argument 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 368 if not options.out_file.endswith(options.out_format): 369 options.out_file += '.' + options.out_format 382 out_format=options.out_format,
|
/third_party/musl/scripts/ |
D | print_so_deps.py | 78 def write_results(self, out_format): argument 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/libavcodec/ |
D | audiotoolboxenc.c | 93 AudioStreamBasicDescription out_format; in ffat_update_ctx() local 110 size = sizeof(out_format); in ffat_update_ctx() 113 &size, &out_format)) { in ffat_update_ctx() 114 if (out_format.mFramesPerPacket) in ffat_update_ctx() 115 avctx->frame_size = out_format.mFramesPerPacket; in ffat_update_ctx() 116 if (out_format.mBytesPerPacket && avctx->codec_id == AV_CODEC_ID_ILBC) in ffat_update_ctx() 117 avctx->block_align = out_format.mBytesPerPacket; in ffat_update_ctx() 253 AudioStreamBasicDescription out_format = { in ffat_init_encoder() local 267 out_format.mFramesPerPacket = 8000 * mode / 1000; in ffat_init_encoder() 268 out_format.mBytesPerPacket = (mode == 20 ? 38 : 50); in ffat_init_encoder() [all …]
|
D | mpegvideo_enc.c | 786 s->out_format = FMT_MPEG1; in ff_mpv_encode_init() 791 s->out_format = FMT_MPEG1; in ff_mpv_encode_init() 798 s->out_format = FMT_MJPEG; in ff_mpv_encode_init() 808 s->out_format = FMT_SPEEDHQ; in ff_mpv_encode_init() 827 s->out_format = FMT_H261; in ff_mpv_encode_init() 844 s->out_format = FMT_H263; in ff_mpv_encode_init() 849 s->out_format = FMT_H263; in ff_mpv_encode_init() 863 s->out_format = FMT_H263; in ff_mpv_encode_init() 871 s->out_format = FMT_H263; in ff_mpv_encode_init() 876 s->out_format = FMT_H263; in ff_mpv_encode_init() [all …]
|
D | mpegpicture.c | 184 static int alloc_picture_tables(AVCodecContext *avctx, Picture *pic, int encoding, int out_format, in alloc_picture_tables() argument 208 if (out_format == FMT_H263 || encoding || in alloc_picture_tables() 234 int chroma_x_shift, int chroma_y_shift, int out_format, in ff_alloc_picture() argument 260 ret = alloc_picture_tables(avctx, pic, encoding, out_format, in ff_alloc_picture()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/egl/ |
D | gsteglimage.c | 460 GstGLFormat * out_format) in _drm_rgba_fourcc_from_info() argument 479 *out_format = GST_GL_RGB565; in _drm_rgba_fourcc_from_info() 484 *out_format = GST_GL_RGB; in _drm_rgba_fourcc_from_info() 497 *out_format = GST_GL_RGBA; in _drm_rgba_fourcc_from_info() 501 *out_format = GST_GL_RED; in _drm_rgba_fourcc_from_info() 508 *out_format = GST_GL_RG; in _drm_rgba_fourcc_from_info() 513 *out_format = plane == 0 ? GST_GL_RED : GST_GL_RG; in _drm_rgba_fourcc_from_info() 521 *out_format = GST_GL_RED; in _drm_rgba_fourcc_from_info() 525 *out_format = GST_GL_RGB10_A2; in _drm_rgba_fourcc_from_info() 529 *out_format = GST_GL_RGB10_A2; in _drm_rgba_fourcc_from_info() [all …]
|
/third_party/googletest/googletest/test/ |
D | gtest_list_output_unittest.py | 246 def _GetOutput(self, out_format): argument 248 'test_out.' + out_format) 254 '%s=%s:%s' % (GTEST_OUTPUT_FLAG, out_format, file_path),
|
/third_party/ffmpeg/libavfilter/ |
D | af_aresample.c | 82 enum AVSampleFormat out_format; in query_formats() local 93 av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format); in query_formats() 119 if(out_format != AV_SAMPLE_FMT_NONE) { in query_formats() 120 int formatlist[] = { out_format, -1 }; in query_formats() 144 enum AVSampleFormat out_format; in config_output() local 164 av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format); in config_output() 169 av_assert0(outlink->format == out_format); in config_output()
|
D | vf_vpp_qsv.c | 68 enum AVPixelFormat out_format; member 240 vpp->out_format = AV_PIX_FMT_NONE; in vpp_init() 242 vpp->out_format = av_get_pix_fmt(vpp->output_format_str); in vpp_init() 243 if (vpp->out_format == AV_PIX_FMT_NONE) { in vpp_init() 315 if (vpp->out_format == AV_PIX_FMT_NONE) in config_output() 316 vpp->out_format = in_format; in config_output() 317 param.out_sw_format = vpp->out_format; in config_output() 459 inlink->w != outlink->w || inlink->h != outlink->h || in_format != vpp->out_format) in config_output()
|
D | vf_scale_npp.c | 240 enum AVPixelFormat out_format; in init_processing_chain() local 253 out_format = (s->format == AV_PIX_FMT_NONE) ? in_format : s->format; in init_processing_chain() 260 if (!format_is_supported(out_format)) { in init_processing_chain() 262 av_get_pix_fmt_name(out_format)); in init_processing_chain() 267 out_deinterleaved_format = get_deinterleaved_format(out_format); in init_processing_chain() 289 if (!s->stages[STAGE_RESIZE].stage_needed && in_format == out_format) in init_processing_chain() 295 if (out_format != out_deinterleaved_format) in init_processing_chain() 312 s->stages[STAGE_INTERLEAVE].out_fmt = out_format; in init_processing_chain()
|
D | vf_scale_cuda.c | 220 enum AVPixelFormat out_format; in init_processing_chain() local 230 out_format = (s->format == AV_PIX_FMT_NONE) ? in_format : s->format; in init_processing_chain() 237 if (!format_is_supported(out_format)) { in init_processing_chain() 239 av_get_pix_fmt_name(out_format)); in init_processing_chain() 244 s->out_fmt = out_format; in init_processing_chain() 246 …f (s->passthrough && in_width == out_width && in_height == out_height && in_format == out_format) { in init_processing_chain()
|
/third_party/gstreamer/gstplugins_bad/sys/msdk/ |
D | gstmsdkmjpegenc.c | 152 GstVideoFormat * out_format) in gst_msdkmjpegenc_need_conversion() argument 161 *out_format = GST_VIDEO_FORMAT_YUY2; in gst_msdkmjpegenc_need_conversion() 165 *out_format = GST_VIDEO_FORMAT_NV12; in gst_msdkmjpegenc_need_conversion()
|
/third_party/gstreamer/gstplugins_base/tests/icles/ |
D | benchmark-video-conversion.c | 46 const gchar * out_format, gdouble max_duration) in do_benchmark_conversions() argument 80 if (out_format != NULL && !g_str_equal (out_format, outfmt_str)) in do_benchmark_conversions()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglcolorconvert.c | 1736 GstVideoFormat out_format = GST_VIDEO_INFO_FORMAT (&convert->out_info); in _PLANAR_RGB_to_PLANAR_RGB() local 1737 const gchar *out_format_str = gst_video_format_to_string (out_format); in _PLANAR_RGB_to_PLANAR_RGB() 1782 GstVideoFormat out_format = GST_VIDEO_INFO_FORMAT (&convert->out_info); in _PLANAR_RGB_to_PACKED_RGB() local 1783 const gchar *out_format_str = gst_video_format_to_string (out_format); in _PLANAR_RGB_to_PACKED_RGB() 1817 GstVideoFormat out_format = GST_VIDEO_INFO_FORMAT (&convert->out_info); in _PACKED_RGB_to_PLANAR_RGB() local 1818 const gchar *out_format_str = gst_video_format_to_string (out_format); in _PACKED_RGB_to_PLANAR_RGB() 1847 GstVideoFormat out_format = GST_VIDEO_INFO_FORMAT (&convert->out_info); in _PACKED_RGB_to_PACKED_RGB() local 1848 const gchar *out_format_str = gst_video_format_to_string (out_format); in _PACKED_RGB_to_PACKED_RGB() 1876 GstVideoFormat out_format = GST_VIDEO_INFO_FORMAT (&convert->out_info); in _RGB_to_RGB() local 1879 if (_is_planar_rgb (out_format)) in _RGB_to_RGB() [all …]
|
D | gstglmemorypbo.c | 113 GstGLFormat out_format; member 452 gst_gl_format_type_from_sized_gl_format (copy_params->out_format, in _gl_mem_copy_thread() 478 copy_params->out_format, out_gl_format, out_gl_type, in _gl_mem_copy_thread() 537 tex_id, copy_params->tex_target, copy_params->out_format, out_width, in _gl_mem_copy_thread() 759 copy_params.out_format = tex_format; in gst_gl_memory_pbo_copy_into_texture()
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/ |
D | gstnvh265dec.c | 350 GstVideoFormat out_format = GST_VIDEO_FORMAT_UNKNOWN; in gst_nv_h265_dec_new_sequence() local 354 out_format = GST_VIDEO_FORMAT_NV12; in gst_nv_h265_dec_new_sequence() 356 out_format = GST_VIDEO_FORMAT_Y444; in gst_nv_h265_dec_new_sequence() 362 out_format = GST_VIDEO_FORMAT_P010_10LE; in gst_nv_h265_dec_new_sequence() 364 out_format = GST_VIDEO_FORMAT_Y444_16LE; in gst_nv_h265_dec_new_sequence() 370 out_format = GST_VIDEO_FORMAT_P016_LE; in gst_nv_h265_dec_new_sequence() 372 out_format = GST_VIDEO_FORMAT_Y444_16LE; in gst_nv_h265_dec_new_sequence() 379 if (out_format == GST_VIDEO_FORMAT_UNKNOWN) { in gst_nv_h265_dec_new_sequence() 384 gst_video_info_set_format (&info, out_format, self->width, self->height); in gst_nv_h265_dec_new_sequence()
|
D | gstnvvp9dec.c | 247 GstVideoFormat out_format = GST_VIDEO_FORMAT_UNKNOWN; in gst_nv_vp9_dec_new_sequence() local 257 out_format = GST_VIDEO_FORMAT_NV12; in gst_nv_vp9_dec_new_sequence() 260 out_format = GST_VIDEO_FORMAT_P010_10LE; in gst_nv_vp9_dec_new_sequence() 262 out_format = GST_VIDEO_FORMAT_P016_LE; in gst_nv_vp9_dec_new_sequence() 266 if (out_format == GST_VIDEO_FORMAT_UNKNOWN) { in gst_nv_vp9_dec_new_sequence() 271 gst_video_info_set_format (&info, out_format, self->width, self->height); in gst_nv_vp9_dec_new_sequence()
|
D | gstnvdec.c | 355 GstVideoFormat out_format; in parser_sequence_callback() local 372 out_format = GST_VIDEO_FORMAT_Y444; in parser_sequence_callback() 376 out_format = GST_VIDEO_FORMAT_Y444_16LE; in parser_sequence_callback() 378 out_format = GST_VIDEO_FORMAT_Y444_16BE; in parser_sequence_callback() 390 out_format = GST_VIDEO_FORMAT_NV12; in parser_sequence_callback() 393 out_format = GST_VIDEO_FORMAT_P010_10LE; in parser_sequence_callback() 395 out_format = GST_VIDEO_FORMAT_P010_10BE; in parser_sequence_callback() 399 out_format = GST_VIDEO_FORMAT_P016_LE; in parser_sequence_callback() 401 out_format = GST_VIDEO_FORMAT_P016_BE; in parser_sequence_callback() 420 "out format: %s", gst_video_format_to_string (out_format)); in parser_sequence_callback() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
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()
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
D | pngstest.c | 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() 2113 else if (~in_format & out_format & PNG_FORMAT_FLAG_COLORMAP) in transform_from_formats() [all …]
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | cudaconvert.c | 51 run_convert_pipelne (const gchar * in_format, const gchar * out_format) in run_convert_pipelne() argument 59 "videoconvert ! autovideosink", in_format, out_format); in run_convert_pipelne()
|
/third_party/gstreamer/gstplugins_bad/sys/v4l2codecs/ |
D | gstv4l2format.c | 171 gst_v4l2_format_to_video_format (guint32 pix_fmt, GstVideoFormat * out_format) in gst_v4l2_format_to_video_format() argument 178 *out_format = entry->gst_fmt; in gst_v4l2_format_to_video_format()
|
D | gstv4l2format.h | 33 GstVideoFormat * out_format);
|
/third_party/gstreamer/gstplugins_bad/sys/d3d11/ |
D | gstd3d11h264dec.cpp | 104 GstVideoFormat out_format = GST_VIDEO_FORMAT_UNKNOWN; member 265 inner->out_format = GST_VIDEO_FORMAT_UNKNOWN; in gst_d3d11_h264_dec_reset() 429 inner->out_format = GST_VIDEO_FORMAT_UNKNOWN; in gst_d3d11_h264_dec_new_sequence() 433 inner->out_format = GST_VIDEO_FORMAT_NV12; in gst_d3d11_h264_dec_new_sequence() 439 if (inner->out_format == GST_VIDEO_FORMAT_UNKNOWN) { in gst_d3d11_h264_dec_new_sequence() 445 inner->out_format, inner->width, inner->height); in gst_d3d11_h264_dec_new_sequence()
|
/third_party/gstreamer/gstplugins_bad/gst/pnm/ |
D | gstpnmdec.c | 196 pnmdec->out_format = fmt; in gst_pnmdec_negotiate() 283 if (s->out_format == GST_VIDEO_FORMAT_GRAY16_BE) in gst_pnmdec_parse_ascii() 312 if (s->out_format == GST_VIDEO_FORMAT_GRAY16_BE) in gst_pnmdec_parse_ascii() 432 if (s->out_format == GST_VIDEO_FORMAT_GRAY16_BE) { in gst_pnmdec_handle_frame()
|