/third_party/ffmpeg/libavfilter/ |
D | vf_aspect.c | 62 AVRational sar; member 71 frame->sample_aspect_ratio = s->sar; in filter_frame() 78 static inline void compute_dar(AVRational *dar, AVRational sar, int w, int h) in compute_dar() argument 80 if (sar.num && sar.den) { in compute_dar() 81 av_reduce(&dar->num, &dar->den, sar.num * (int64_t)w, sar.den * (int64_t)h, INT_MAX); in compute_dar() 142 av_reduce(&s->sar.num, &s->sar.den, in setdar_config_props() 145 outlink->sample_aspect_ratio = s->sar; in setdar_config_props() 210 if ((ret = get_aspect_ratio(inlink, &s->sar))) in setsar_config_props() 213 outlink->sample_aspect_ratio = s->sar; in setsar_config_props() 216 compute_dar(&dar, s->sar, inlink->w, inlink->h); in setsar_config_props()
|
D | vf_delogo.c | 100 int w, int h, AVRational sar, in apply_delogo() argument 152 weightl = (uint64_t) (logo_x2-x) * (y-logo_y1) * (logo_y2-y) * sar.den; in apply_delogo() 153 weightr = (uint64_t)(x-logo_x1) * (y-logo_y1) * (logo_y2-y) * sar.den; in apply_delogo() 154 weightt = (uint64_t)(x-logo_x1) * (logo_x2-x) * (logo_y2-y) * sar.num; in apply_delogo() 155 weightb = (uint64_t)(x-logo_x1) * (logo_x2-x) * (y-logo_y1) * sar.num; in apply_delogo() 306 AVRational sar; in filter_frame() local 355 sar = in->sample_aspect_ratio; in filter_frame() 357 if (!sar.num) in filter_frame() 358 sar.num = sar.den = 1; in filter_frame() 368 sar, s->x>>hsub, s->y>>vsub, in filter_frame()
|
D | vf_vignette.c | 294 AVRational sar = inlink->sample_aspect_ratio; in config_props() local 303 if (!sar.num || !sar.den) in config_props() 304 sar.num = sar.den = 1; in config_props() 305 if (sar.num > sar.den) { in config_props() 306 s->xscale = av_q2d(av_div_q(sar, s->aspect)); in config_props() 309 s->yscale = av_q2d(av_div_q(s->aspect, sar)); in config_props()
|
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/ |
D | cpuhotplug05.sh | 18 Desc: Does sar behave properly during CPU hotplug events? 62 tst_require_cmds sar 95 sar 1 0 >/dev/null 2>&1 & 99 if ps -C sar >/dev/null 2>&1; then 100 pkill sar 101 sar -P "$CPU_TO_TEST" 1 0 > "$LOG_FILE" & 103 sar -P "$CPU_TO_TEST" 1 > "$LOG_FILE" &
|
/third_party/ffmpeg/libavcodec/ |
D | dv_profile.c | 83 .sar = { { 8, 9 }, { 32, 27 } }, 100 .sar = { { 16, 15 }, { 64, 45 } }, 117 .sar = { { 16, 15 }, { 64, 45 } }, 134 .sar = { { 8, 9 }, { 32, 27 } }, 151 .sar = { { 16, 15 }, { 64, 45 } }, 168 .sar = { { 1, 1 }, { 3, 2 } }, 185 .sar = { { 1, 1 }, { 4, 3 } }, 202 .sar = { { 1, 1 }, { 4, 3 } }, 219 .sar = { { 1, 1 }, { 4, 3 } }, 236 .sar = { { 16, 15 }, { 64, 45 } },
|
D | mjpegenc_common.c | 143 AVRational sar = avctx->sample_aspect_ratio; in jpeg_put_comments() local 145 if (sar.num > 65535 || sar.den > 65535) { in jpeg_put_comments() 146 …if (!av_reduce(&sar.num, &sar.den, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den,… in jpeg_put_comments() 162 put_bits(p, 16, sar.num); in jpeg_put_comments() 163 put_bits(p, 16, sar.den); in jpeg_put_comments()
|
/third_party/ffmpeg/libavdevice/ |
D | xv.c | 138 AVRational sar = par->sample_aspect_ratio; in xv_write_header() local 141 if (sar.num) { in xv_write_header() 142 if (sar.num > sar.den) in xv_write_header() 143 xv->window_width = av_rescale(xv->window_width, sar.num, sar.den); in xv_write_header() 144 if (sar.num < sar.den) in xv_write_header() 145 xv->window_height = av_rescale(xv->window_height, sar.den, sar.num); in xv_write_header() 229 AVRational sar, dar; /* sample and display aspect ratios */ in compute_display_area() local 234 sar = st->sample_aspect_ratio.num ? st->sample_aspect_ratio : (AVRational){ 1, 1 }; in compute_display_area() 235 dar = av_mul_q(sar, (AVRational){ par->width, par->height }); in compute_display_area()
|
D | sdl2.c | 99 AVRational sar, dar; /* sample and display aspect ratios */ in compute_texture_rect() local 106 sar = st->sample_aspect_ratio.num ? st->sample_aspect_ratio : (AVRational){ 1, 1 }; in compute_texture_rect() 107 dar = av_mul_q(sar, (AVRational){ codecpar->width, codecpar->height }); in compute_texture_rect() 122 if (sar.num > sar.den) { in compute_texture_rect()
|
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/doc/ |
D | hotplug06.txt | 6 crash, and found that sar wouldn't register newly available cpus that 39 Start up sar writing to a temp log and give it a little time to run 44 Take a timestamp and count how many CPUs sar is reporting to be 54 Kill the sar process
|
/third_party/ffmpeg/libavutil/ |
D | imgutils.c | 322 int av_image_check_sar(unsigned int w, unsigned int h, AVRational sar) in av_image_check_sar() argument 326 if (sar.den <= 0 || sar.num < 0) in av_image_check_sar() 329 if (!sar.num || sar.num == sar.den) in av_image_check_sar() 332 if (sar.num < sar.den) in av_image_check_sar() 333 scaled_dim = av_rescale_rnd(w, sar.num, sar.den, AV_ROUND_ZERO); in av_image_check_sar() 335 scaled_dim = av_rescale_rnd(h, sar.den, sar.num, AV_ROUND_ZERO); in av_image_check_sar()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vc1dsp_mc.asm | 235 sar blockd, 3 ; >> 3 239 sar blockd, 7 ; >> 7 252 sar blockd, 3 ; >> 3 255 sar blockd, 7 ; >> 7 268 sar blockd, 1 ; >> 1 272 sar blockd, 7 ; >> 7 283 sar blockd, 1 ; >> 1 285 sar blockd, 5 ; >> 5
|
D | h264_weight.asm | 106 sar r2d, 1 143 sar r5d, 1 144 sar r6d, 1 145 sar off_regd, 1 245 sar r3, 1 303 sar r3, 1
|
D | cfhddsp.asm | 101 sar tempq, 3 105 sar tempq, 1 124 sar tempq, 3 128 sar tempq, 1 243 sar tempq, 3 247 sar tempq, 1 266 sar tempq, 3 270 sar tempq, 1
|
/third_party/gstreamer/gstplugins_bad/ext/dash/ |
D | gstmpdrepresentationbasenode.c | 68 g_slice_free (GstXMLRatio, self->sar); in gst_mpd_representation_base_node_set_property() 69 self->sar = gst_xml_helper_clone_ratio (g_value_get_pointer (value)); in gst_mpd_representation_base_node_set_property() 142 g_value_set_pointer (value, self->sar); in gst_mpd_representation_base_node_get_property() 195 g_slice_free (GstXMLRatio, self->sar); in gst_mpd_representation_base_node_finalize() 238 gst_xml_helper_set_prop_ratio (representation_base_node, "sar", self->sar); in gst_mpd_representation_base_get_xml_node() 320 self->sar = NULL; in gst_mpd_representation_base_node_init()
|
/third_party/musl/src/thread/s390x/ |
D | __set_thread_area.s | 6 sar %a1, %r2 8 sar %a0, %r2
|
/third_party/ffmpeg/tests/ref/fate/ |
D | matroska-prores-header-insertion-bz2 | 7 #sar 0: 186/157 12 #sar 1: 186/157
|
D | matroska-spherical-mono-remux | 9 #sar 0: 0/1 14 #sar 1: 0/1
|
D | matroska-mastering-display-metadata | 9 #sar 0: 1/1 26 #sar 3: 1/1
|
D | dds-rgb555 | 5 #sar 0: 0/1
|
D | hapy | 5 #sar 0: 0/1
|
D | png-int-rgb24 | 5 #sar 0: 2835/2835
|
D | dxv3-dxt1 | 5 #sar 0: 0/1
|
D | dxtory | 5 #sar 0: 0/1
|
/third_party/ffmpeg/libavformat/ |
D | avc.c | 434 sps->sar.num = get_bits(&gb, 16); in ff_avc_decode_sps() 435 sps->sar.den = get_bits(&gb, 16); in ff_avc_decode_sps() 437 sps->sar = avc_sample_aspect_ratio[aspect_ratio_idc]; in ff_avc_decode_sps() 442 if (!sps->sar.den) { in ff_avc_decode_sps() 443 sps->sar.num = 1; in ff_avc_decode_sps() 444 sps->sar.den = 1; in ff_avc_decode_sps()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrShiftRotate.td | 224 "sar{b}\t{%cl, $dst|$dst, cl}", 227 "sar{w}\t{%cl, $dst|$dst, cl}", 231 "sar{l}\t{%cl, $dst|$dst, cl}", 235 "sar{q}\t{%cl, $dst|$dst, cl}", 240 "sar{b}\t{$src2, $dst|$dst, $src2}", 243 "sar{w}\t{$src2, $dst|$dst, $src2}", 247 "sar{l}\t{$src2, $dst|$dst, $src2}", 252 "sar{q}\t{$src2, $dst|$dst, $src2}", 257 "sar{b}\t$dst", 260 "sar{w}\t$dst", [all …]
|