Home
last modified time | relevance | path

Searched refs:dest_format (Results 1 – 25 of 49) sorted by relevance

12

/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dgstvideoutilsprivate.c155 GstFormat * dest_format, gint64 * dest_value) in __gst_video_rawvideo_convert() argument
161 g_return_val_if_fail (dest_format != NULL, FALSE); in __gst_video_rawvideo_convert()
164 if (src_format == *dest_format || src_value == 0 || src_value == -1) { in __gst_video_rawvideo_convert()
174 *dest_format == GST_FORMAT_DEFAULT && vidsize) { in __gst_video_rawvideo_convert()
179 *dest_format == GST_FORMAT_BYTES && vidsize) { in __gst_video_rawvideo_convert()
184 *dest_format == GST_FORMAT_TIME && fps_n) { in __gst_video_rawvideo_convert()
189 *dest_format == GST_FORMAT_DEFAULT && fps_d) { in __gst_video_rawvideo_convert()
194 *dest_format == GST_FORMAT_BYTES && fps_d && vidsize) { in __gst_video_rawvideo_convert()
200 *dest_format == GST_FORMAT_TIME && fps_n && vidsize) { in __gst_video_rawvideo_convert()
212 GstFormat src_format, gint64 src_value, GstFormat * dest_format, in __gst_video_encoded_video_convert() argument
[all …]
Dgstvideoutilsprivate.h42 GstFormat * dest_format, gint64 * dest_value);
46 gint64 src_value, GstFormat * dest_format,
Dvideo-info.c1250 GstFormat dest_format, gint64 * dest_value) in gst_video_info_convert() argument
1267 gst_format_get_name (dest_format)); in gst_video_info_convert()
1269 if (src_format == dest_format) { in gst_video_info_convert()
1282 if (src_format == GST_FORMAT_BYTES && dest_format == GST_FORMAT_DEFAULT) { in gst_video_info_convert()
1294 if (src_format == GST_FORMAT_DEFAULT && dest_format == GST_FORMAT_BYTES) { in gst_video_info_convert()
1301 if (src_format == GST_FORMAT_TIME && dest_format == GST_FORMAT_DEFAULT) { in gst_video_info_convert()
1314 if (src_format == GST_FORMAT_DEFAULT && dest_format == GST_FORMAT_TIME) { in gst_video_info_convert()
1327 if (src_format == GST_FORMAT_TIME && dest_format == GST_FORMAT_BYTES) { in gst_video_info_convert()
1340 if (src_format == GST_FORMAT_BYTES && dest_format == GST_FORMAT_TIME) { in gst_video_info_convert()
/third_party/pixman/test/
Dcheck-formats.c7 pixman_format_code_t dest_format) in check_op() argument
18 pixel_checker_init (&dest_checker, dest_format); in check_op()
30 di = pixman_image_create_bits (dest_format, 1, 1, &d, 4); in check_op()
61 d <<= 32 - PIXMAN_FORMAT_BPP (dest_format); in check_op()
68 d >>= (32 - PIXMAN_FORMAT_BPP (dest_format)); in check_op()
75 printf ("dest: %-12s pixel: %08x\n", format_name (dest_format), orig_d); in check_op()
76 printf ("got: %-12s pixel: %08x\n", format_name (dest_format), d); in check_op()
Daffine-bench.c275 pixman_format_code_t *dest_format) in parse_arguments() argument
322 *dest_format = format_from_string (*argv); in parse_arguments()
323 if (*dest_format == PIXMAN_null) in parse_arguments()
352 pixman_format_code_t dest_format = PIXMAN_a8r8g8b8; in main() local
379 &src_format, &mask_format, &dest_format)) in main()
442 create_image (WIDTH + 64, HEIGHT, dest_format, filter, in main()
/third_party/pixman/pixman/
Dpixman-implementation.c81 pixman_format_code_t dest_format, in _pixman_implementation_lookup_composite() argument
105 info->dest_format == dest_format && in _pixman_implementation_lookup_composite()
130 ((info->dest_format == dest_format) || in _pixman_implementation_lookup_composite()
131 (info->dest_format == PIXMAN_any)) && in _pixman_implementation_lookup_composite()
176 cache->cache[0].fast_path.dest_format = dest_format; in _pixman_implementation_lookup_composite()
Dpixman-glyph.c412 pixman_format_code_t dest_format; in pixman_composite_glyphs_no_mask() local
422 dest_format = dest->common.extended_format_code; in pixman_composite_glyphs_no_mask()
474 dest_format, dest_flags, in pixman_composite_glyphs_no_mask()
511 pixman_format_code_t dest_format; in add_glyphs() local
521 dest_format = dest->common.extended_format_code; in add_glyphs()
583 dest_format, dest_flags, in add_glyphs()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Dgstaudiocdsrc.c468 gint64 src_val, GstFormat dest_format, gint64 * dest_val) in gst_audio_cd_src_convert() argument
474 gst_format_get_name (dest_format)); in gst_audio_cd_src_convert()
476 if (src_format == dest_format) { in gst_audio_cd_src_convert()
498 if (src_format == dest_format) { in gst_audio_cd_src_convert()
509 switch (dest_format) { in gst_audio_cd_src_convert()
525 if (dest_format == sector_format) { in gst_audio_cd_src_convert()
527 } else if (dest_format == track_format) { in gst_audio_cd_src_convert()
548 switch (dest_format) { in gst_audio_cd_src_convert()
560 if (dest_format == sector_format) { in gst_audio_cd_src_convert()
562 } else if (dest_format == track_format) { in gst_audio_cd_src_convert()
[all …]
Dgstaudioutilsprivate.c168 gint64 src_value, GstFormat * dest_format, gint64 * dest_value) in __gst_audio_encoded_audio_convert() argument
172 g_return_val_if_fail (dest_format != NULL, FALSE); in __gst_audio_encoded_audio_convert()
175 if (G_UNLIKELY (src_format == *dest_format || src_value == 0 || in __gst_audio_encoded_audio_convert()
191 switch (*dest_format) { in __gst_audio_encoded_audio_convert()
202 switch (*dest_format) { in __gst_audio_encoded_audio_convert()
Dgstaudioutilsprivate.h42 gint64 src_value, GstFormat * dest_format,
/third_party/gstreamer/gstplugins_base/gst/rawparse/
Dgstrawbaseparse.c137 GstFormat src_format, gint64 src_value, GstFormat dest_format,
675 gint64 src_value, GstFormat dest_format, gint64 * dest_value) in gst_raw_base_parse_convert() argument
699 if (G_UNLIKELY (src_format == dest_format)) { in gst_raw_base_parse_convert()
701 } else if ((src_format == GST_FORMAT_TIME || dest_format == GST_FORMAT_TIME) in gst_raw_base_parse_convert()
704 dest_format)) { in gst_raw_base_parse_convert()
713 klass->get_units_per_second (raw_base_parse, dest_format, in gst_raw_base_parse_convert()
730 dest_format, dest_value); in gst_raw_base_parse_convert()
735 gst_format_get_name (src_format), gst_format_get_name (dest_format), in gst_raw_base_parse_convert()
/third_party/gstreamer/gstplugins_bad/ext/kate/
Dgstkateparse.c102 GstFormat * dest_format, gint64 * dest_value);
456 GstFormat * dest_format, gint64 * dest_value)
469 if (src_format == *dest_format) {
475 (src_format == GST_FORMAT_BYTES || *dest_format == GST_FORMAT_BYTES))
480 switch (*dest_format) {
486 switch (*dest_format) {
/third_party/gstreamer/gstplugins_base/ext/vorbis/
Dgstvorbisparse.c93 gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
531 GstFormat * dest_format, gint64 * dest_value) in vorbis_parse_convert() argument
545 if (src_format == *dest_format) { in vorbis_parse_convert()
551 (src_format == GST_FORMAT_BYTES || *dest_format == GST_FORMAT_BYTES)) in vorbis_parse_convert()
556 switch (*dest_format) { in vorbis_parse_convert()
569 switch (*dest_format) { in vorbis_parse_convert()
582 switch (*dest_format) { in vorbis_parse_convert()
/third_party/gstreamer/gstplugins_good/ext/dv/
Dgstdvdemux.c147 GstFormat src_format, gint64 src_value, GstFormat dest_format,
150 GstFormat src_format, gint64 src_value, GstFormat dest_format,
382 GstFormat src_format, gint64 src_value, GstFormat dest_format, in gst_dvdemux_src_convert() argument
387 if (dest_format == src_format || src_value == -1) { in gst_dvdemux_src_convert()
400 src_value, src_format, dest_format); in gst_dvdemux_src_convert()
404 switch (dest_format) { in gst_dvdemux_src_convert()
425 switch (dest_format) { in gst_dvdemux_src_convert()
453 switch (dest_format) { in gst_dvdemux_src_convert()
485 dest_format, *dest_value, res); in gst_dvdemux_src_convert()
498 gint64 src_value, GstFormat dest_format, gint64 * dest_value) in gst_dvdemux_sink_convert() argument
[all …]
/third_party/gstreamer/gstplugins_good/gst/auparse/
Dgstauparse.c101 GstFormat src_format, gint64 srcval, GstFormat dest_format,
499 gint64 srcval, GstFormat dest_format, gint64 * destval) in gst_au_parse_src_convert() argument
504 if (dest_format == src_format) { in gst_au_parse_src_convert()
524 switch (dest_format) { in gst_au_parse_src_convert()
541 switch (dest_format) { in gst_au_parse_src_convert()
563 gst_format_get_name (src_format), gst_format_get_name (dest_format)); in gst_au_parse_src_convert()
/third_party/gstreamer/gstplugins_base/ext/theora/
Dgsttheoraparse.c738 GstFormat * dest_format, gint64 * dest_value) in theora_parse_src_convert() argument
744 if (src_format == *dest_format) { in theora_parse_src_convert()
757 switch (*dest_format) { in theora_parse_src_convert()
769 switch (*dest_format) { in theora_parse_src_convert()
779 gst_format_get_name (*dest_format)); in theora_parse_src_convert()
784 switch (*dest_format) { in theora_parse_src_convert()
/third_party/gstreamer/gstplugins_bad/gst/speed/
Dgstspeed.c183 GstFormat * dest_format, gint64 * dest_value) in gst_speed_convert() argument
188 if (src_format == *dest_format) { in gst_speed_convert()
195 switch (*dest_format) { in gst_speed_convert()
221 switch (*dest_format) { in gst_speed_convert()
238 switch (*dest_format) { in gst_speed_convert()
/third_party/gstreamer/gstplugins_bad/tools/element-templates/
Dbaseparse23 gint64 src_value, GstFormat dest_format, gint64 * dest_value);
97 gint64 src_value, GstFormat dest_format, gint64 * dest_value)
/third_party/gstreamer/gstplugins_good/gst/imagefreeze/
Dgstimagefreeze.c410 GstFormat * dest_format, gint64 * dest_value) in gst_image_freeze_convert() argument
414 if (src_format == *dest_format) { in gst_image_freeze_convert()
426 switch (*dest_format) { in gst_image_freeze_convert()
444 switch (*dest_format) { in gst_image_freeze_convert()
476 GstFormat src_format, dest_format; in gst_image_freeze_src_query() local
479 gst_query_parse_convert (query, &src_format, &src_value, &dest_format, in gst_image_freeze_src_query()
482 gst_image_freeze_convert (self, src_format, src_value, &dest_format, in gst_image_freeze_src_query()
485 gst_query_set_convert (query, src_format, src_value, dest_format, in gst_image_freeze_src_query()
/third_party/gstreamer/gstreamer/libs/gst/base/
Dgstbaseparse.h270 GstFormat dest_format,
363 GstFormat dest_format,
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/
Dascend_helper.cc90 const std::string &dest_format) { in SetGroupAttr() argument
101 if (dest_format == kOpFormat_FRAC_Z) { in SetGroupAttr()
126 std::string dest_format = AnfAlgo::GetInputFormat(node, index); in GetTransInputNodePtr() local
127 if (NeedInsertTransData(origin_shape, dest_format)) { in GetTransInputNodePtr()
132 SetGroupAttr(real_input->cast<ParameterPtr>(), input_node, transdata, dest_format); in GetTransInputNodePtr()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_rs.h42 uint8_t dest_format; /* RS_FORMAT_XXX */ member
/third_party/gstreamer/gstreamer/gst/
Dgstquery.h361 …ry_new_convert (GstFormat src_format, gint64 value, GstFormat dest_format) G_GNUC_MALLOC;
365 GstFormat dest_format, gint64 dest_value);
369 GstFormat *dest_format, gint64 *dest_value);
/third_party/gstreamer/gstplugins_base/ext/ogg/
Dgstogmparse.c160 gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
414 GstFormat * dest_format, gint64 * dest_value) in gst_ogm_parse_sink_convert() argument
421 switch (*dest_format) { in gst_ogm_parse_sink_convert()
443 switch (*dest_format) { in gst_ogm_parse_sink_convert()
/third_party/gstreamer/gstplugins_bad/gst/videoparsers/
Dgstdiracparse.c64 GstFormat src_format, gint64 src_value, GstFormat dest_format,
386 gint64 src_value, GstFormat dest_format, gint64 * dest_value) in gst_dirac_parse_convert() argument

12