Searched refs:dest_h (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavdevice/ |
D | xv.c | 51 unsigned int dest_w, dest_h; /**< display area dimensions */ member 239 if (av_cmp_q(dar, (AVRational){ xv->dest_w, xv->dest_h }) > 0) { in compute_display_area() 241 xv->dest_y = xv->dest_h; in compute_display_area() 243 xv->dest_h = av_rescale(xv->dest_w, dar.den, dar.num); in compute_display_area() 244 xv->dest_y -= xv->dest_h; in compute_display_area() 250 xv->dest_w = av_rescale(xv->dest_h, dar.num, dar.den); in compute_display_area() 265 xv->dest_h = window_attrs.height; in xv_repaint() 280 rect[1].y = xv->dest_h + xv->dest_y; in xv_repaint() 287 xv->dest_x, xv->dest_y, xv->dest_w, xv->dest_h, True) != Success) { in xv_repaint()
|