Home
last modified time | relevance | path

Searched refs:rowstrides (Results 1 – 25 of 117) sorted by relevance

12345

/dports/x11/xpra/xpra-4.3/xpra/codecs/jpeg/
H A Dencoder.pyx298 rowstrides = (image.get_rowstride()//4, )
300 width, height, rowstrides,
389 rowstrides = image.get_rowstride()
392 width, height, rowstrides,
396 int width, int height, rowstrides, argument
409 assert rowstrides[i]>=width//xdiv, "stride %i is too small for width %i of plane %s" % (
410 rowstrides[i], width//xdiv, "YUV"[i])
411 strides[i] = rowstrides[i]
435 log.error(" width=%i, strides=%s, height=%i", width, rowstrides, height)
/dports/multimedia/lives/lives-3.2.0/src/
H A Dcolourspace.h229 weed_layer_t *weed_layer_create(int width, int height, int *rowstrides, int current_palette);
230 weed_layer_t *weed_layer_create_full(int width, int height, int *rowstrides, int current_palette,
341 weed_layer_t *weed_layer_set_rowstrides(weed_layer_t *, int *rowstrides, int nplanes);
H A Dcolourspace.c9254 rowstrides[1] = rowstrides[2] = rowstride; in create_empty_pixel_data()
9259 lives_free(rowstrides); in create_empty_pixel_data()
9326 } else rowstrides[1] = rowstrides[2] = rowstride; in create_empty_pixel_data()
9382 } else rowstrides[0] = rowstrides[1] = rowstrides[2] = rowstride; in create_empty_pixel_data()
9440 } else rowstrides[0] = rowstrides[1] = rowstrides[2] = rowstrides[3] = rowstride; in create_empty_pixel_data()
10093 int *rowstrides, rtmp; in swap_chroma_planes() local
10102 rtmp = rowstrides[1]; in swap_chroma_planes()
10103 rowstrides[1] = rowstrides[2]; in swap_chroma_planes()
10104 rowstrides[2] = rtmp; in swap_chroma_planes()
12491 lives_free(rowstrides); in compact_rowstrides()
[all …]
H A Dplugins.h432 …boolean(*get_frame)(const lives_clip_data_t *, int64_t frame, int *rowstrides, int height, void **…
H A Deffects-weed.c1598 int *rowstrides; in weed_apply_instance() local
2194 lives_freep((void **)&rowstrides); in weed_apply_instance()
2416 lives_free(rowstrides); in weed_apply_instance()
2501 lives_freep((void **)&rowstrides); in weed_apply_instance()
2527 lives_freep((void **)&rowstrides); in weed_apply_instance()
2584 lives_freep((void **)&rowstrides); in weed_apply_instance()
7614 int *rowstrides; in weed_layer_create_from_generator() local
7778 rowstrides = weed_channel_get_rowstrides(channel, &npl); in weed_layer_create_from_generator()
7825 lives_free(rowstrides); in weed_layer_create_from_generator()
11123 lives_write_le_buffered(fd, &rowstrides[j], 4, TRUE); in weed_leaf_serialise()
[all …]
H A Dmain.c7249 int *rowstrides; in pull_frame_at_size() local
7337 rowstrides = weed_layer_get_rowstrides(layer, NULL); in pull_frame_at_size()
7344 rowstrides, sfile->vsize, pixel_data)) { in pull_frame_at_size()
7363 lives_free(rowstrides); in pull_frame_at_size()
/dports/multimedia/lives/lives-3.2.0/lives-plugins/plugins/decoders/
H A Ddv_decoder.c556 boolean get_frame(const lives_clip_data_t *cdata, int64_t tframe, int *rowstrides, int height, void… in get_frame() argument
577 dv_decode_full_frame(priv->dv_dec, fbuffer, e_dv_color_rgb, (uint8_t **)pixel_data, rowstrides); in get_frame()
580 … dv_decode_full_frame(priv->dv_dec, fbuffer, e_dv_color_bgr0, (uint8_t **)pixel_data, rowstrides); in get_frame()
583 dv_decode_full_frame(priv->dv_dec, fbuffer, e_dv_color_yuv, (uint8_t **)pixel_data, rowstrides); in get_frame()
H A Ddecplugin.h274 boolean get_frame(const lives_clip_data_t *, int64_t frame, int *rowstrides, int height, void **pix…
H A Davformat_decoder.c1041 boolean get_frame(const lives_clip_data_t *cdata, int64_t tframe, int *rowstrides, int height, void… in get_frame() argument
1116 if (cdata->frame_width > cdata->width && rowstrides[0] < cdata->frame_width * psize) { in get_frame()
1368 if ((rowstride = rowstrides[p]) <= 0) { in get_frame()
H A Dflv_decoder.c1538 boolean get_frame(const lives_clip_data_t *cdata, int64_t tframe, int *rowstrides, int height, void… in get_frame() argument
1593 if (cdata->frame_width > cdata->width && rowstrides[0] < cdata->frame_width * psize) { in get_frame()
H A Dmkv_decoder.c2714 boolean get_frame(const lives_clip_data_t *cdata, int64_t tframe, int *rowstrides, int height, void… in get_frame() argument
2760 if (cdata->frame_width > cdata->width && rowstrides[0] < cdata->frame_width * psize) { in get_frame()
2919 if ((rowstride = rowstrides[p]) <= 0) { in get_frame()
H A Dasf_decoder.c2606 boolean get_frame(const lives_clip_data_t *cdata, int64_t tframe, int *rowstrides, int height, void… in get_frame() argument
2666 if (cdata->frame_width > cdata->width && rowstrides[0] < cdata->frame_width * psize) { in get_frame()
H A Dogg_decoder.c2640 boolean get_frame(const lives_clip_data_t *cdata, int64_t tframe, int *rowstrides, int height, void… in get_frame() argument
2706 if (cdata->frame_width > cdata->width && rowstrides[0] < cdata->frame_width * psize) { in get_frame()
H A Dmpegts_decoder.c3461 boolean get_frame(const lives_clip_data_t *cdata, int64_t tframe, int *rowstrides, int height, void… in get_frame() argument
3521 if (cdata->frame_width > cdata->width && rowstrides[0] < cdata->frame_width * psize) { in get_frame()
/dports/x11/xpra/xpra-4.3/xpra/client/gl/
H A Dgl_window_backing_base.py1241 rowstrides = img.get_rowstride()
1244 assert len(rowstrides)==3 and len(img_data)==3
1261 self.set_alignment(w, rowstrides[index], tex_name)
1264 index, divs[index], rowstrides[index], w, h, len(pixel_data), upload)
/dports/multimedia/lives/lives-3.2.0/libweed/
H A Dweed-plugin-utils.h308 FN_DECL void blank_frame(void **pdata, int width, int height, int *rowstrides, int pal, int yuv_cla…
/dports/x11/xpra/xpra-4.3/xpra/codecs/v4l2/
H A Dpusher.pyx445 #validate rowstrides:
/dports/x11/xpra/xpra-4.3/xpra/codecs/csc_libyuv/
H A Dcolorspace_converter.pyx292 #add two extra lines to height so we can access two rowstrides at a time,
/dports/x11/xpra/xpra-4.3/xpra/codecs/csc_swscale/
H A Dcolorspace_converter.pyx433 … assert len(strides)==iplanes, "expected %s rowstrides but found %s" % (iplanes, len(strides))
/dports/x11/xpra/xpra-4.3/xpra/codecs/csc_cython/
H A Dcolorspace_converter.pyx763 …_strides[1]==src_stride and input_strides[2]==src_stride, "mismatch in rowstrides: %s" % (input_st…
/dports/graphics/kludge3d/kludge3d-20040822/
H A DChangeLog37 - fixed tex_gdkpixbuf.c; images with rowstrides that do not match
/dports/math/alglib/alglib-cpp/src/
H A Dlinalg.cpp45747 sstride = analysis->rowstrides.ptr.p_int[sidx]; in spsymmreloaddiagonal()
45980 sstride = analysis->rowstrides.ptr.p_int[sidx]; in spsymmsolve()
46033 sstride = analysis->rowstrides.ptr.p_int[sidx]; in spsymmsolve()
46130 sstride = analysis->rowstrides.ptr.p_int[sidx]; in spsymmdiagerr()
47182 sstride = analysis->rowstrides.ptr.p_int[sidx]; in spchol_loadmatrix()
48204 trowstride = analysis->rowstrides.ptr.p_int[sidx]; in spchol_updatesupernode()
48205 urowstride = analysis->rowstrides.ptr.p_int[uidx]; in spchol_updatesupernode()
48377 sstride = analysis->rowstrides.ptr.p_int[sidx]; in spchol_factorizesupernode()
49595 ae_vector_init_copy(&dst->rowstrides, &src->rowstrides, _state, make_automatic); in _spcholanalysis_init_copy()
49643 ae_vector_clear(&p->rowstrides); in _spcholanalysis_clear()
[all …]
H A Dlinalg.h272 ae_vector rowstrides; member
/dports/x11/xpra/xpra-4.3/packaging/debian/xpra/
H A Dchangelog1135 * fix OpenGL rendering alignment for padded rowstrides case
/dports/multimedia/lives/lives-3.2.0/
H A DChangeLog68 Fix rowstrides error in YUV(A) non-planar to planar conversions.

12345