Home
last modified time | relevance | path

Searched refs:scanline (Results 1 – 25 of 66) sorted by relevance

123

/third_party/ffmpeg/libavcodec/
Dexrenc.c85 EXRScanlineData *scanline; member
127 s->scanline = av_calloc(s->nb_scanlines, sizeof(*s->scanline)); in encode_init()
128 if (!s->scanline) in encode_init()
138 for (int y = 0; y < s->nb_scanlines && s->scanline; y++) { in encode_close()
139 EXRScanlineData *scanline = &s->scanline[y]; in encode_close() local
141 av_freep(&scanline->tmp); in encode_close()
142 av_freep(&scanline->compressed_data); in encode_close()
143 av_freep(&scanline->uncompressed_data); in encode_close()
146 av_freep(&s->scanline); in encode_close()
219 EXRScanlineData *scanline = &s->scanline[y]; in encode_scanline_rle() local
[all …]
Dpcx.c81 uint8_t *ptr, *scanline; in pcx_decode_frame() local
154 scanline = av_malloc(bytes_per_scanline + AV_INPUT_BUFFER_PADDING_SIZE); in pcx_decode_frame()
155 if (!scanline) in pcx_decode_frame()
160 ret = pcx_rle_decode(&gb, scanline, bytes_per_scanline, compressed); in pcx_decode_frame()
165 ptr[3 * x] = scanline[x]; in pcx_decode_frame()
166 ptr[3 * x + 1] = scanline[x + bytes_per_line]; in pcx_decode_frame()
167 ptr[3 * x + 2] = scanline[x + (bytes_per_line << 1)]; in pcx_decode_frame()
183 ret = pcx_rle_decode(&gb, scanline, bytes_per_scanline, compressed); in pcx_decode_frame()
186 memcpy(ptr, scanline, w); in pcx_decode_frame()
203 init_get_bits8(&s, scanline, bytes_per_scanline); in pcx_decode_frame()
[all …]
/third_party/ffmpeg/tests/fate/
Dimage.mak118 FATE_EXR += fate-exr-rgb-scanline-pxr24-float-12x8
119 fate-exr-rgb-scanline-pxr24-float-12x8: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_pxr24_…
124 FATE_EXR += fate-exr-rgb-scanline-float-b44
125 fate-exr-rgb-scanline-float-b44: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_float_b44.exr…
127 FATE_EXR += fate-exr-rgb-scanline-half-b44-12x8
128 fate-exr-rgb-scanline-half-b44-12x8: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_half_b44_…
130 FATE_EXR += fate-exr-rgb-scanline-half-b44-13x9
131 fate-exr-rgb-scanline-half-b44-13x9: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_half_b44_…
142 FATE_EXR += fate-exr-rgba-scanline-float-half-b44-13x9-l1
143 fate-exr-rgba-scanline-float-half-b44-13x9-l1: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgba_scanlin…
[all …]
/third_party/boost/boost/polygon/detail/
Dproperty_merge.hpp90 …merge_scanline() : output(), scanline(), currentVertex(), tmpVector(), previousY(), countFromBelow… in merge_scanline()
93 scanline(that.scanline), in merge_scanline()
102 scanline = that.scanline; in operator =()
118 scanlinePosition = scanline.end(); in perform_merge()
224 scanline_type scanline; member in boost::polygon::merge_scanline
296 if(scanlinePosition == scanline.end() || in processVertex()
298 scanlinePosition = scanline.lower_bound(previousY); in processVertex()
302 while(scanlinePosition != scanline.end()) { in processVertex()
326 if(previousScanlinePosition == scanline.begin()) { in processVertex()
328 scanline.erase(previousScanlinePosition); in processVertex()
[all …]
Dproperty_merge_45.hpp127 typename boolean_op_45<Unit>::template Scan45<CountMerge, merge_45_output_functor> scanline; in performMerge() local
134 scanline.scan(result, itr, itr2); in performMerge()
Dpolygon_45_touch.hpp206 typename boolean_op_45<Unit>::template Scan45<CountTouch, touch_45_output_functor> scanline; in performTouch() local
213 scanline.scan(output, itr, itr2); in performTouch()
/third_party/skia/gm/
Dbleed.cpp53 uint32_t* scanline = bitmap.getAddr32(0, 0); in make_ringed_image() local
55 scanline[x] = kOuterRingColor; in make_ringed_image()
57 scanline = bitmap.getAddr32(0, 1); in make_ringed_image()
58 scanline[0] = kOuterRingColor; in make_ringed_image()
60 scanline[x] = kInnerRingColor; in make_ringed_image()
62 scanline[width - 1] = kOuterRingColor; in make_ringed_image()
65 scanline = bitmap.getAddr32(0, y); in make_ringed_image()
66 scanline[0] = kOuterRingColor; in make_ringed_image()
67 scanline[1] = kInnerRingColor; in make_ringed_image()
69 scanline[x] = kCheckColor1; in make_ringed_image()
[all …]
/third_party/flutter/skia/gm/
Dbleed.cpp65 PIXEL_TYPE* scanline = (PIXEL_TYPE*)result->fBitmap.getAddr(0, 0); in make_ringed_bitmap() local
67 scanline[x] = outerRingColor; in make_ringed_bitmap()
69 scanline = (PIXEL_TYPE*)result->fBitmap.getAddr(0, 1); in make_ringed_bitmap()
70 scanline[0] = outerRingColor; in make_ringed_bitmap()
72 scanline[x] = innerRingColor; in make_ringed_bitmap()
74 scanline[width - 1] = outerRingColor; in make_ringed_bitmap()
77 scanline = (PIXEL_TYPE*)result->fBitmap.getAddr(0, y); in make_ringed_bitmap()
78 scanline[0] = outerRingColor; in make_ringed_bitmap()
79 scanline[1] = innerRingColor; in make_ringed_bitmap()
81 scanline[x] = checkColor1; in make_ringed_bitmap()
[all …]
/third_party/flutter/skia/bench/
DGameBench.cpp255 SkPMColor* scanline = fCheckerboard.getAddr32(0, y); in makeCheckerboard() local
259 *scanline++ = 0xFFFF0000; in makeCheckerboard()
261 *scanline++ = 0x00000000; in makeCheckerboard()
289 SkPMColor* scanline = fAtlas.getAddr32(0, y); in makeAtlas() local
291 for (int x = 0; x < kTotAtlasWidth; ++x, ++scanline) { in makeAtlas()
297 *scanline = colors[colorX][colorY]; in makeAtlas()
299 *scanline = 0x00000000; in makeAtlas()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Drdrle.c248 JSAMPROW scanline, red_ptr, green_ptr, blue_ptr; in load_image() local
292 scanline = *(*cinfo->mem->access_virt_sarray) in load_image()
299 *scanline++ = (JSAMPLE) in load_image()
315 scanline = *(*cinfo->mem->access_virt_sarray) in load_image()
324 *scanline++ = *red_ptr++; in load_image()
325 *scanline++ = *green_ptr++; in load_image()
326 *scanline++ = *blue_ptr++; in load_image()
/third_party/libjpeg-turbo/
Drdrle.c248 JSAMPROW scanline, red_ptr, green_ptr, blue_ptr; in load_image() local
292 scanline = *(*cinfo->mem->access_virt_sarray) in load_image()
299 *scanline++ = (JSAMPLE) in load_image()
315 scanline = *(*cinfo->mem->access_virt_sarray) in load_image()
324 *scanline++ = *red_ptr++; in load_image()
325 *scanline++ = *green_ptr++; in load_image()
326 *scanline++ = *blue_ptr++; in load_image()
/third_party/skia/bench/
DGameBench.cpp256 SkPMColor* scanline = bm.getAddr32(0, y); in makeCheckerboard() local
260 *scanline++ = 0xFFFF0000; in makeCheckerboard()
262 *scanline++ = 0x00000000; in makeCheckerboard()
292 SkPMColor* scanline = bm.getAddr32(0, y); in makeAtlas() local
294 for (int x = 0; x < kTotAtlasWidth; ++x, ++scanline) { in makeAtlas()
300 *scanline = colors[colorX][colorY]; in makeAtlas()
302 *scanline = 0x00000000; in makeAtlas()
/third_party/mesa3d/src/imgui/
Dimstb_truetype.h2790 static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int m… in stbtt__fill_active_edges() argument
2809scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); in stbtt__fill_active_edges()
2812scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> ST… in stbtt__fill_active_edges()
2817scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); in stbtt__fill_active_edges()
2822 scanline[i] = scanline[i] + (stbtt_uint8) max_weight; in stbtt__fill_active_edges()
2839 unsigned char scanline_data[512], *scanline; in stbtt__rasterize_sorted_edges() local
2842 scanline = (unsigned char *) STBTT_malloc(result->w, userdata); in stbtt__rasterize_sorted_edges()
2844 scanline = scanline_data; in stbtt__rasterize_sorted_edges()
2850 STBTT_memset(scanline, 0, result->w); in stbtt__rasterize_sorted_edges()
2918 stbtt__fill_active_edges(scanline, result->w, active, max_weight); in stbtt__rasterize_sorted_edges()
[all …]
/third_party/skia/third_party/externals/imgui/
Dimstb_truetype.h2790 static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int m… in stbtt__fill_active_edges() argument
2809scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); in stbtt__fill_active_edges()
2812scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> ST… in stbtt__fill_active_edges()
2817scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); in stbtt__fill_active_edges()
2822 scanline[i] = scanline[i] + (stbtt_uint8) max_weight; in stbtt__fill_active_edges()
2839 unsigned char scanline_data[512], *scanline; in stbtt__rasterize_sorted_edges() local
2842 scanline = (unsigned char *) STBTT_malloc(result->w, userdata); in stbtt__rasterize_sorted_edges()
2844 scanline = scanline_data; in stbtt__rasterize_sorted_edges()
2850 STBTT_memset(scanline, 0, result->w); in stbtt__rasterize_sorted_edges()
2918 stbtt__fill_active_edges(scanline, result->w, active, max_weight); in stbtt__rasterize_sorted_edges()
[all …]
/third_party/flutter/skia/third_party/externals/imgui/
Dimstb_truetype.h2772 static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int m… in stbtt__fill_active_edges() argument
2791scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); in stbtt__fill_active_edges()
2794scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> ST… in stbtt__fill_active_edges()
2799scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); in stbtt__fill_active_edges()
2804 scanline[i] = scanline[i] + (stbtt_uint8) max_weight; in stbtt__fill_active_edges()
2821 unsigned char scanline_data[512], *scanline; in stbtt__rasterize_sorted_edges() local
2824 scanline = (unsigned char *) STBTT_malloc(result->w, userdata); in stbtt__rasterize_sorted_edges()
2826 scanline = scanline_data; in stbtt__rasterize_sorted_edges()
2832 STBTT_memset(scanline, 0, result->w); in stbtt__rasterize_sorted_edges()
2900 stbtt__fill_active_edges(scanline, result->w, active, max_weight); in stbtt__rasterize_sorted_edges()
[all …]
/third_party/skia/third_party/externals/freetype/docs/
Draster.txt90 A pixel line in the target bitmap is called a `scanline'.
214 /---/ |---| several spans per scanline.
217 V /----------------| current scanline y, we must
237 For each scanline during the sweep, we need the following
240 o The number of spans on the current scanline, given by the
241 number of shape points intersecting the scanline (these are
306 *scanline* crossed by the contour's section containing the
372 - min scanline = FLOOR ( min y )
373 - max scanline = CEILING( max y )
529 for each scanline.
[all …]
/third_party/flutter/skia/third_party/externals/freetype/docs/
Draster.txt90 A pixel line in the target bitmap is called a `scanline'.
214 /---/ |---| several spans per scanline.
217 V /----------------| current scanline y, we must
237 For each scanline during the sweep, we need the following
240 o The number of spans on the current scanline, given by the
241 number of shape points intersecting the scanline (these are
306 *scanline* crossed by the contour's section containing the
372 - min scanline = FLOOR ( min y )
373 - max scanline = CEILING( max y )
529 for each scanline.
[all …]
/third_party/freetype/docs/
Draster.txt90 A pixel line in the target bitmap is called a `scanline'.
214 /---/ |---| several spans per scanline.
217 V /----------------| current scanline y, we must
237 For each scanline during the sweep, we need the following
240 o The number of spans on the current scanline, given by the
241 number of shape points intersecting the scanline (these are
306 *scanline* crossed by the contour's section containing the
372 - min scanline = FLOOR ( min y )
373 - max scanline = CEILING( max y )
529 for each scanline.
[all …]
/third_party/flutter/skia/src/core/
DSkRegion.cpp426 const RunType* scanline = fRunHead->findScanline(r.fTop); in contains() local
428 if (!scanline_contains(scanline, r.fLeft, r.fRight)) { in contains()
431 if (r.fBottom <= scanline_bottom(scanline)) { in contains()
434 scanline = scanline_next(scanline); in contains()
511 const RunType* scanline = fRunHead->findScanline(sect.fTop); in intersects() local
513 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) { in intersects()
516 if (sect.fBottom <= scanline_bottom(scanline)) { in intersects()
519 scanline = scanline_next(scanline); in intersects()
/third_party/skia/src/core/
DSkRegion.cpp425 const RunType* scanline = fRunHead->findScanline(r.fTop); in contains() local
427 if (!scanline_contains(scanline, r.fLeft, r.fRight)) { in contains()
430 if (r.fBottom <= scanline_bottom(scanline)) { in contains()
433 scanline = scanline_next(scanline); in contains()
510 const RunType* scanline = fRunHead->findScanline(sect.fTop); in intersects() local
512 if (scanline_intersects(scanline, sect.fLeft, sect.fRight)) { in intersects()
515 if (sect.fBottom <= scanline_bottom(scanline)) { in intersects()
518 scanline = scanline_next(scanline); in intersects()
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/
Dgreedyh.c723 ScanlineFunction scanline) in deinterlace_frame_di_greedyh_plane() argument
770 scanline (self, L1, L2, L3, L2P, Dest, RowStride); in deinterlace_frame_di_greedyh_plane()
794 ScanlineFunction scanline; in deinterlace_frame_di_greedyh_packed() local
813 scanline = klass->scanline_yuy2; in deinterlace_frame_di_greedyh_packed()
816 scanline = klass->scanline_uyvy; in deinterlace_frame_di_greedyh_packed()
819 scanline = klass->scanline_ayuv; in deinterlace_frame_di_greedyh_packed()
827 cur_field_idx, 0, scanline); in deinterlace_frame_di_greedyh_packed()
/third_party/skia/third_party/externals/swiftshader/src/Main/
DFrameBufferWin.hpp46 virtual bool getScanline(bool &inVerticalBlank, unsigned int &scanline) = 0;
DFrameBufferGDI.hpp42 bool getScanline(bool &inVerticalBlank, unsigned int &scanline) override;
DFrameBufferDD.hpp44 bool getScanline(bool &inVerticalBlank, unsigned int &scanline) override;
/third_party/python/Tools/scripts/
Dfixdiv.py220 startlineno, endlineno, slashes = lineinfo = scanline(g)
357 def scanline(g): function

123