Home
last modified time | relevance | path

Searched refs:full_range (Results 1 – 21 of 21) sorted by relevance

/third_party/ffmpeg/libavutil/
Dhwcontext_videotoolbox.c37 bool full_range; member
68 uint32_t av_map_videotoolbox_format_from_pixfmt2(enum AVPixelFormat pix_fmt, bool full_range) in av_map_videotoolbox_format_from_pixfmt2() argument
72 if (cv_pix_fmts[i].pix_fmt == pix_fmt && cv_pix_fmts[i].full_range == full_range) in av_map_videotoolbox_format_from_pixfmt2()
Dhwcontext_videotoolbox.h58 uint32_t av_map_videotoolbox_format_from_pixfmt2(enum AVPixelFormat pix_fmt, bool full_range);
/third_party/mesa3d/src/gallium/auxiliary/vl/
Dvl_csc.c156 bool full_range, in vl_csc_get_matrix() argument
171 if (full_range) { in vl_csc_get_matrix()
Dvl_csc.h56 bool full_range,
/third_party/ffmpeg/libavfilter/
Dvf_pseudocolor.c105 static const Range full_range = {0, 256}; variable
152 [PRESET_MAGMA] = { 1, &full_range, &curves[MAGMA], NULL },
153 [PRESET_INFERNO] = { 1, &full_range, &curves[INFERNO], NULL },
154 [PRESET_PLASMA] = { 1, &full_range, &curves[PLASMA], NULL },
155 [PRESET_VIRIDIS] = { 1, &full_range, &curves[VIRIDIS], NULL },
156 [PRESET_TURBO] = { 1, &full_range, &curves[TURBO], NULL },
157 [PRESET_CIVIDIS] = { 1, &full_range, &curves[CIVIDIS], NULL },
Ddrawutils.c90 int full_range = 0; in ff_draw_init() local
100 full_range = 1; in ff_draw_init()
127 draw->full_range = full_range; in ff_draw_init()
163 …color->comp[desc->comp[0].plane].u8[desc->comp[0].offset] = draw->full_range ? RGB_TO_Y_JPEG(rgba[… in ff_draw_color()
164 …color->comp[desc->comp[1].plane].u8[desc->comp[1].offset] = draw->full_range ? RGB_TO_U_JPEG(rgba[… in ff_draw_color()
165 …color->comp[desc->comp[2].plane].u8[desc->comp[2].offset] = draw->full_range ? RGB_TO_V_JPEG(rgba[… in ff_draw_color()
Ddrawutils.h45 int full_range; member
/third_party/ffmpeg/libavcodec/
Dvideotoolbox.c1087 bool full_range = avctx->color_range == AVCOL_RANGE_JPEG; in videotoolbox_common_init() local
1089 av_map_videotoolbox_format_from_pixfmt2(hw_frames->sw_format, full_range); in videotoolbox_common_init()
1219 bool full_range) in av_videotoolbox_alloc_context_with_pix_fmt() argument
1226 OSType cv_pix_fmt_type = av_map_videotoolbox_format_from_pixfmt2(pix_fmt, full_range); in av_videotoolbox_alloc_context_with_pix_fmt()
1249 bool full_range = avctx->color_range == AVCOL_RANGE_JPEG; in av_videotoolbox_default_init2() local
1250 … avctx->hwaccel_context = vtctx ?: av_videotoolbox_alloc_context_with_pix_fmt(pix_fmt, full_range); in av_videotoolbox_default_init2()
Dh264_ps.h75 int full_range; member
Dh264_ps.c163 sps->full_range = get_bits1(gb); /* video_full_range_flag */ in decode_vui_parameters()
376 sps->full_range = -1; in ff_h264_decode_seq_parameter_set()
Ddvbsubdec.c1058 int entry_id, depth , full_range; in dvbsub_parse_clut_segment() local
1106 full_range = (*buf++) & 1; in dvbsub_parse_clut_segment()
1108 if (full_range) { in dvbsub_parse_clut_segment()
Dh264_slice.c1084 h->avctx->color_range = sps->full_range > 0 ? AVCOL_RANGE_JPEG in h264_init_ps()
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11convert.cpp1509 gboolean full_range) in clear_rtv_color_rgb() argument
1518 if (full_range) in clear_rtv_color_rgb()
1529 gboolean full_range) in clear_rtv_color_vuya() argument
1536 if (full_range) in clear_rtv_color_vuya()
1547 gboolean full_range) in clear_rtv_color_luma() argument
1556 if (full_range) in clear_rtv_color_luma()
1579 gboolean full_range = info->colorimetry.range == GST_VIDEO_COLOR_RANGE_0_255; in clear_rtv_color_all() local
1586 clear_rtv_color_rgb (self, context_handle, rtv[i], full_range); in clear_rtv_color_all()
1589 clear_rtv_color_vuya (self, context_handle, rtv[i], full_range); in clear_rtv_color_all()
1592 clear_rtv_color_luma (self, context_handle, rtv[i], full_range); in clear_rtv_color_all()
/third_party/gstreamer/gstplugins_bad/gst/dvbsuboverlay/
Ddvb-sub.c571 int entry_id, depth, full_range; in _dvb_sub_parse_clut_segment() local
602 full_range = (*buf++) & 1; in _dvb_sub_parse_clut_segment()
604 if (full_range) { in _dvb_sub_parse_clut_segment()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dduration_test.cc848 const absl::Duration full_range = range_future - range_past; in TEST() local
849 EXPECT_GT(full_range, absl::ZeroDuration()); in TEST()
850 EXPECT_LT(full_range, absl::InfiniteDuration()); in TEST()
856 EXPECT_LT(neg_full_range, full_range); in TEST()
857 EXPECT_EQ(neg_full_range, -full_range); in TEST()
Dtime_test.cc917 absl::Duration full_range = 2 * range; in TEST() local
918 EXPECT_EQ(full_range, top - bottom); in TEST()
919 EXPECT_EQ(-full_range, bottom - top); in TEST()
/third_party/abseil-cpp/absl/time/
Dduration_test.cc847 const absl::Duration full_range = range_future - range_past; in TEST() local
848 EXPECT_GT(full_range, absl::ZeroDuration()); in TEST()
849 EXPECT_LT(full_range, absl::InfiniteDuration()); in TEST()
855 EXPECT_LT(neg_full_range, full_range); in TEST()
856 EXPECT_EQ(neg_full_range, -full_range); in TEST()
Dtime_test.cc917 absl::Duration full_range = 2 * range; in TEST() local
918 EXPECT_EQ(full_range, top - bottom); in TEST()
919 EXPECT_EQ(-full_range, bottom - top); in TEST()
/third_party/boost/libs/wave/samples/cpp_tokens/slex/
Dlexer.hpp1187 full_range() in full_range() function
1202 newrr.set(full_range<char_t>()); in negate_range_run()
1705 rr.set(full_range<char_t>()); in do_any_char()
/third_party/ffmpeg/libavformat/
Dmovenc.c2028 int full_range = track->par->color_range == AVCOL_RANGE_JPEG; in mov_write_colr_tag() local
2029 avio_w8(pb, full_range << 7); in mov_write_colr_tag()
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dqtdemux.c11402 gboolean full_range = len == 19 ? colr_data[17] >> 7 : FALSE; in qtdemux_parse_trak() local
11411 full_range ? GST_VIDEO_COLOR_RANGE_0_255 : in qtdemux_parse_trak()