Home
last modified time | relevance | path

Searched refs:cwidth (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/tools/
Dyuvcmp.c43 int cwidth = width / 2; in main() local
125 x = c % cwidth; in main()
126 y = c / cwidth; in main()
143 x / 8 + y / 8 * cwidth / 8); in main()
/third_party/gstreamer/gstplugins_good/ext/jpeg/
Dgstjpegenc.h66 gint cwidth[GST_VIDEO_MAX_COMPONENTS]; member
Dgstjpegenc.c358 enc->cwidth[i] = GST_VIDEO_INFO_COMP_WIDTH (info, i); in gst_jpegenc_set_format()
362 GST_ROUND_UP_4 (GST_VIDEO_INFO_WIDTH (info)) / enc->cwidth[i]; in gst_jpegenc_set_format()
529 for (l = jpegenc->cwidth[k]; l > 0; l--) { in gst_jpegenc_handle_frame()
/third_party/gstreamer/gstplugins_bad/gst/interlace/
Dgstinterlace.c1105 gint cheight, cwidth; in copy_fields() local
1122 cwidth = MIN (ABS (ss), ABS (ds)); in copy_fields()
1125 memcpy (d, s, cwidth); in copy_fields()
1169 gint cheight, cwidth; in copy_field() local
1179 cwidth = MIN (ABS (ss), ABS (ds)); in copy_field()
1182 memcpy (d, s, cwidth); in copy_field()
/third_party/python/Lib/turtledemo/
D__main__.py206 cwidth = self._canvas.winfo_width()
208 self._canvas.xview_moveto(0.5*(self.canvwidth-cwidth)/self.canvwidth)
/third_party/python/Lib/
Dturtle.py382 cwidth = self._canvas.winfo_width()
384 self._canvas.xview_moveto(0.5*(self.canvwidth-cwidth)/self.canvwidth)
386 if cwidth < self.canvwidth or cheight < self.canvheight:
437 def setupcanvas(self, width, height, cwidth, cheight): argument
438 self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight)