/third_party/ffmpeg/libavcodec/ |
D | audiotoolboxdec.c | 309 AudioStreamBasicDescription in_format = { in ffat_create_decoder() local 323 UInt32 format_size = sizeof(in_format); in ffat_create_decoder() 329 cookie_size, cookie, &format_size, &in_format); in ffat_create_decoder() 344 &in_format.mChannelsPerFrame, &avctx->frame_size, in ffat_create_decoder() 348 in_format.mSampleRate = avctx->sample_rate; in ffat_create_decoder() 359 in_format.mSampleRate = hdr.sample_rate; in ffat_create_decoder() 360 in_format.mChannelsPerFrame = hdr.channels; in ffat_create_decoder() 365 in_format.mSampleRate = avctx->sample_rate ? avctx->sample_rate : 44100; in ffat_create_decoder() 366 in_format.mChannelsPerFrame = avctx->channels ? avctx->channels : 1; in ffat_create_decoder() 369 avctx->sample_rate = out_format.mSampleRate = in_format.mSampleRate; in ffat_create_decoder() [all …]
|
D | audiotoolboxenc.c | 239 AudioStreamBasicDescription in_format = { in ffat_init_encoder() local 256 .mChannelsPerFrame = in_format.mChannelsPerFrame, in ffat_init_encoder() 271 status = AudioConverterNew(&in_format, &out_format, &at->converter); in ffat_init_encoder()
|
/third_party/gstreamer/gstplugins_bad/sys/applemedia/ |
D | videotexturecache.m | 35 GstVideoFormat in_format, GstCaps * out_caps); 68 GstVideoFormat in_format, GstCaps * out_caps) 79 G_TYPE_STRING, gst_video_format_to_string (in_format), NULL); 88 GstVideoFormat in_format, GstCaps * out_caps) 93 cache_class->set_format (cache, in_format, out_caps);
|
D | videotexturecache.h | 53 GstVideoFormat in_format, 63 GstVideoFormat in_format,
|
/third_party/gstreamer/gstplugins_base/gst/videoconvert/ |
D | gstvideoconvert.c | 287 const gchar *in_format; in gst_video_convert_fixate_format() local 293 in_format = gst_structure_get_string (ins, "format"); in gst_video_convert_fixate_format() 294 if (!in_format) in gst_video_convert_fixate_format() 297 GST_DEBUG_OBJECT (base, "source format %s", in_format); in gst_video_convert_fixate_format() 300 gst_video_format_get_info (gst_video_format_from_string (in_format)); in gst_video_convert_fixate_format() 346 const GstVideoFormatInfo *in_format, *out_format; in subsampling_unchanged() local 352 in_format = in_info->finfo; in subsampling_unchanged() 356 if (GST_VIDEO_FORMAT_INFO_W_SUB (in_format, in subsampling_unchanged() 359 if (GST_VIDEO_FORMAT_INFO_H_SUB (in_format, in subsampling_unchanged()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_scale_npp.c | 239 enum AVPixelFormat in_format; in init_processing_chain() local 252 in_format = in_frames_ctx->sw_format; in init_processing_chain() 253 out_format = (s->format == AV_PIX_FMT_NONE) ? in_format : s->format; in init_processing_chain() 255 if (!format_is_supported(in_format)) { in init_processing_chain() 257 av_get_pix_fmt_name(in_format)); in init_processing_chain() 266 in_deinterleaved_format = get_deinterleaved_format(in_format); in init_processing_chain() 289 if (!s->stages[STAGE_RESIZE].stage_needed && in_format == out_format) in init_processing_chain() 293 if (in_format != in_deinterleaved_format) in init_processing_chain() 299 s->stages[STAGE_DEINTERLEAVE].in_fmt = in_format; in init_processing_chain()
|
D | vf_scale_cuda.c | 219 enum AVPixelFormat in_format; in init_processing_chain() local 229 in_format = in_frames_ctx->sw_format; in init_processing_chain() 230 out_format = (s->format == AV_PIX_FMT_NONE) ? in_format : s->format; in init_processing_chain() 232 if (!format_is_supported(in_format)) { in init_processing_chain() 234 av_get_pix_fmt_name(in_format)); in init_processing_chain() 243 s->in_fmt = in_format; in init_processing_chain() 246 …if (s->passthrough && in_width == out_width && in_height == out_height && in_format == out_format)… in init_processing_chain()
|
D | vf_nlmeans_opencl.c | 294 enum AVPixelFormat in_format; in nlmeans_opencl_filter_frame() local 306 in_format = input_frames_ctx->sw_format; in nlmeans_opencl_filter_frame() 319 desc = av_pix_fmt_desc_get(in_format); in nlmeans_opencl_filter_frame() 320 if (!is_format_supported(in_format)) { in nlmeans_opencl_filter_frame() 323 av_get_pix_fmt_name(in_format)); in nlmeans_opencl_filter_frame()
|
D | vf_vpp_qsv.c | 296 enum AVPixelFormat in_format; in config_output() local 311 in_format = ((AVHWFramesContext*)inlink->hw_frames_ctx->data)->sw_format; in config_output() 313 in_format = inlink->format; in config_output() 316 vpp->out_format = in_format; in config_output() 459 inlink->w != outlink->w || inlink->h != outlink->h || in_format != vpp->out_format) in config_output()
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/ |
D | gstcudaconvert.c | 288 const gchar *in_format; in gst_cuda_convert_fixate_format() local 294 in_format = gst_structure_get_string (ins, "format"); in gst_cuda_convert_fixate_format() 295 if (!in_format) in gst_cuda_convert_fixate_format() 298 GST_DEBUG_OBJECT (base, "source format %s", in_format); in gst_cuda_convert_fixate_format() 301 gst_video_format_get_info (gst_video_format_from_string (in_format)); in gst_cuda_convert_fixate_format()
|
/third_party/gstreamer/gstplugins_base/tests/icles/ |
D | benchmark-video-conversion.c | 45 do_benchmark_conversions (guint width, guint height, const gchar * in_format, in do_benchmark_conversions() argument 63 if (in_format != NULL && !g_str_equal (in_format, infmt_str)) in do_benchmark_conversions()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglcolorconvert.c | 1350 const gchar *in_format; in gst_gl_color_convert_fixate_format_target() local 1359 in_format = gst_structure_get_string (ins, "format"); in gst_gl_color_convert_fixate_format_target() 1360 if (!in_format) in gst_gl_color_convert_fixate_format_target() 1368 gst_video_format_get_info (gst_video_format_from_string (in_format)); in gst_gl_color_convert_fixate_format_target() 1734 GstVideoFormat in_format = GST_VIDEO_INFO_FORMAT (&convert->in_info); in _PLANAR_RGB_to_PLANAR_RGB() local 1735 const gchar *in_format_str = gst_video_format_to_string (in_format); in _PLANAR_RGB_to_PLANAR_RGB() 1780 GstVideoFormat in_format = GST_VIDEO_INFO_FORMAT (&convert->in_info); in _PLANAR_RGB_to_PACKED_RGB() local 1781 const gchar *in_format_str = gst_video_format_to_string (in_format); in _PLANAR_RGB_to_PACKED_RGB() 1815 GstVideoFormat in_format = GST_VIDEO_INFO_FORMAT (&convert->in_info); in _PACKED_RGB_to_PLANAR_RGB() local 1816 const gchar *in_format_str = gst_video_format_to_string (in_format); in _PACKED_RGB_to_PLANAR_RGB() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/smpte/ |
D | gstsmptealpha.c | 624 smpte->in_format = GST_VIDEO_INFO_FORMAT (in_info); in gst_smpte_alpha_set_info() 641 switch (smpte->in_format) { in gst_smpte_alpha_set_info() 653 switch (smpte->in_format) { in gst_smpte_alpha_set_info() 662 switch (smpte->in_format) { in gst_smpte_alpha_set_info() 671 switch (smpte->in_format) { in gst_smpte_alpha_set_info() 680 switch (smpte->in_format) { in gst_smpte_alpha_set_info()
|
D | gstsmptealpha.h | 58 GstVideoFormat in_format, out_format; member
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | zxing.c | 24 setup_pipeline (const gchar * in_format) in setup_pipeline() argument 36 " ! fakesink", path, in_format); in setup_pipeline()
|
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()
|
D | openjpeg.c | 194 run_openjpeg_pipeline (const gchar * in_format, gint width, gint height, in run_openjpeg_pipeline() argument 205 NUM_BUFFERS, in_format, width, height, FRAME_RATE, num_stripes, in run_openjpeg_pipeline()
|
D | d3d11colorconvert.c | 152 run_convert_pipelne (const gchar * in_format, const gchar * out_format) in run_convert_pipelne() argument 160 "videoconvert ! d3d11videosink", in_format, out_format); in run_convert_pipelne()
|
/third_party/gstreamer/gstplugins_bad/sys/d3d11/ |
D | gstd3d11window_dummy.cpp | 121 const GstD3D11Format *in_format = in gst_d3d11_window_dummy_prepare() local 133 if (in_color_space && in_format && in gst_d3d11_window_dummy_prepare() 134 in_format->dxgi_format != DXGI_FORMAT_UNKNOWN) { in gst_d3d11_window_dummy_prepare() 147 DXGI_FORMAT in_dxgi_format = in_format->dxgi_format; in gst_d3d11_window_dummy_prepare()
|
D | gstd3d11videoprocessor.h | 56 DXGI_FORMAT in_format,
|
/third_party/gstreamer/gstplugins_base/gst/audioconvert/ |
D | gstaudioconvert.c | 446 const gchar *in_format; in gst_audio_convert_fixate_format() local 453 in_format = gst_structure_get_string (ins, "format"); in gst_audio_convert_fixate_format() 454 if (!in_format) in gst_audio_convert_fixate_format() 467 gst_audio_format_get_info (gst_audio_format_from_string (in_format)); in gst_audio_convert_fixate_format() 496 if (strcmp (fname, in_format) == 0) { in gst_audio_convert_fixate_format()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/ |
D | video-scaler.h | 87 GstVideoFormat in_format,
|
/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 2075 in_format = in_image->image.format; in transform_from_formats() 2078 if (in_format & PNG_FORMAT_FLAG_LINEAR) in transform_from_formats() 2089 result->in_gp = get_pixel(in_format); in transform_from_formats() 2093 in_format &= BASE_FORMATS | PNG_FORMAT_FLAG_COLORMAP; in transform_from_formats() 2094 in_base = in_format & BASE_FORMATS; 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() 2132 if (in_format & out_format & PNG_FORMAT_FLAG_COLORMAP) in transform_from_formats() [all …]
|
/third_party/gstreamer/gstplugins_good/gst/videobox/ |
D | gstvideobox.h | 62 GstVideoFormat in_format; member
|
/third_party/gstreamer/gstplugins_bad/sys/va/ |
D | gstvavpp.c | 1070 const gchar *in_format; in gst_va_vpp_fixate_format() local 1078 in_format = gst_structure_get_string (ins, "format"); in gst_va_vpp_fixate_format() 1079 if (!in_format) in gst_va_vpp_fixate_format() 1082 GST_DEBUG_OBJECT (self, "source format %s", in_format); in gst_va_vpp_fixate_format() 1085 gst_video_format_get_info (gst_video_format_from_string (in_format)); in gst_va_vpp_fixate_format() 1601 const GstVideoFormatInfo *in_format, *out_format; in subsampling_unchanged() local 1607 in_format = in_info->finfo; in subsampling_unchanged() 1611 if (GST_VIDEO_FORMAT_INFO_W_SUB (in_format, in subsampling_unchanged() 1614 if (GST_VIDEO_FORMAT_INFO_H_SUB (in_format, in subsampling_unchanged()
|