Home
last modified time | relevance | path

Searched +refs:a +refs:frame (Results 1 – 25 of 100596) sorted by relevance

12345678910>>...4024

/dports/net/parpd/parpd-1.3/
H A Darp.c44 struct action *a; in print_arp_statistics() local
63 if(a->statistics.learned || a->statistics.respond) { in print_arp_statistics()
66 memset(&a->statistics, 0, sizeof(a->statistics)); in print_arp_statistics()
192 if(ip_match(a->src, frame->src.ip) && ip_match(a->dst, frame->dst.ip)) { in arp_respond()
194 switch(a->op) { in arp_respond()
206 if(!a->delay || arp_match_delay(&frame->eh.src, frame->dst.ip)) { in arp_respond()
207 switch(arp_search_mac_and_respond(frame, frame->dst.ip, a->verbose ? i : 0)) { in arp_respond()
213 arp_send_response(frame, &a->redirect.mac, a->verbose ? i : 0); in arp_respond()
239 if(!a->delay || arp_match_delay(&frame->eh.src, frame->dst.ip)) { in arp_respond()
241 arp_send_response(frame, &a->redirect.mac, a->verbose ? i : 0); in arp_respond()
[all …]
H A Dnd.c93 if(a->statistics.learned || a->statistics.respond) { in print_nd_statistics()
96 memset(&a->statistics, 0, sizeof(a->statistics)); in print_nd_statistics()
229 if(ip6_match(&a->src, &frame->ph.ip6_src) && ip6_match(&a->dst, &frame->ns.nd_ns_target)) { in nd_respond()
231 switch(a->op) { in nd_respond()
241 if(!a->delay || nd_match_delay(&frame->eh.src, frame->ns.nd_ns_target)) { in nd_respond()
243 nd_search_mac_and_respond(frame, frame->ns.nd_ns_target, a->verbose ? i : 0); in nd_respond()
253 if(!a->delay || nd_match_delay(&frame->eh.src, frame->ns.nd_ns_target)) { in nd_respond()
255 nd_send_response(frame, &a->redirect.mac, a->verbose ? i : 0); in nd_respond()
256 } else if(!nd_search_mac_and_respond(frame, a->redirect.ip, a->verbose ? i : 0)) { in nd_respond()
279 if(!a->delay || nd_match_delay(&frame->eh.src, frame->ns.nd_ns_target)) { in nd_respond()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/macventure/
H A Dscript.cpp632 state->push(a); in op8fSWAP()
640 state->poke(0, a); in op90SWAPN()
662 state->push(a); in op94SHUFF()
704 state->push(a + b); in op98ADD()
710 state->push(a - b); in op99SUB()
716 state->push(a * b); in op9aMUL()
723 state->push(a / b); in op9bDIV()
729 state->push(a % b); in op9cMOD()
1191 a *= b; in ope2MDIV()
1194 a /= c; in ope2MDIV()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/macventure/
H A Dscript.cpp632 state->push(a); in op8fSWAP()
640 state->poke(0, a); in op90SWAPN()
662 state->push(a); in op94SHUFF()
704 state->push(a + b); in op98ADD()
710 state->push(a - b); in op99SUB()
716 state->push(a * b); in op9aMUL()
723 state->push(a / b); in op9bDIV()
729 state->push(a % b); in op9cMOD()
1191 a *= b; in ope2MDIV()
1194 a /= c; in ope2MDIV()
[all …]
/dports/multimedia/schroedinger/schroedinger-1.0.11/schroedinger/
H A Dschroanalysis.c17 last = frame->filtered_frame; in schro_encoder_frame_downsample()
23 MAX (frame->params.xbsep_luma, frame->params.ybsep_luma)); in schro_encoder_frame_downsample()
33 SCHRO_ASSERT (frame); in schro_encoder_frame_upsample()
51 SCHRO_ASSERT (a->width == b->width); in schro_frame_component_squared_error()
52 SCHRO_ASSERT (a->height == b->height); in schro_frame_component_squared_error()
55 for (j = 0; j < a->height; j++) { in schro_frame_component_squared_error()
59 SCHRO_FRAME_DATA_GET_LINE (a, j), in schro_frame_component_squared_error()
60 SCHRO_FRAME_DATA_GET_LINE (b, j), a->width); in schro_frame_component_squared_error()
73 n = a->components[0].width * a->components[0].height; in schro_frame_mean_squared_error()
78 n = a->components[1].width * a->components[1].height; in schro_frame_mean_squared_error()
[all …]
H A Dschroframe.c1693 #define uint32_to_host(a) \ argument
1694 ((((a)&0xff)<<24)|(((a)&0xff00)<<8)|(((a)&0xff0000)>>8)|(((a)>>24)&0xff))
1696 #define uint32_to_host(a) (a) argument
1710 uint32_t a, b, c, d; in schro_md5() local
1712 a = state[0]; in schro_md5()
1717 MD5STEP (F1, a, b, c, d, src[0], 0xd76aa478, 7); in schro_md5()
1721 MD5STEP (F1, a, b, c, d, src[4], 0xf57c0faf, 7); in schro_md5()
1725 MD5STEP (F1, a, b, c, d, src[8], 0x698098d8, 7); in schro_md5()
1734 MD5STEP (F2, a, b, c, d, src[1], 0xf61e2562, 5); in schro_md5()
1735 MD5STEP (F2, d, a, b, c, src[6], 0xc040b340, 9); in schro_md5()
[all …]
/dports/multimedia/projectx/Project-X_0.91.0/src/net/sourceforge/dvb/projectx/audio/
H A DAudioFormatWAV.java88 for (int a = pos + 12; a < frame.length - 4; a++) in parseHeader()
90 if (Arrays.binarySearch(WaveChunks, (chunk = littleEndian(frame, a, 4, false))) < 0) in parseHeader()
95 chunksize = littleEndian(frame, a + 4, 4, isINTEL()); in parseHeader()
96 setLayer(littleEndian(frame, a + 8, 2, isINTEL())); // Compression type (1=PCM) in parseHeader()
97 setChannel(littleEndian(frame, a + 10, 2, isINTEL())); // channels in parseHeader()
98 setSamplingFrequency(littleEndian(frame, a + 12, 4, isINTEL())); // samplerate in parseHeader()
99 setBitrate(littleEndian(frame, a + 16, 4, isINTEL()) * 8); // avg bits per second in parseHeader()
100 setMode(littleEndian(frame, a + 20, 2, isINTEL())); // block align, bytes per sample in parseHeader()
101 setSize(littleEndian(frame, a + 22, 2, isINTEL())); //bits per sample in parseHeader()
107 chunksize = littleEndian(frame, a + 4, 4, isINTEL()); in parseHeader()
[all …]
/dports/games/cdogs-sdl/cdogs-sdl-1.0.1/src/cdogs/
H A Danimation.c70 if (a->frameCounter > a->ticksPerFrame[a->frame]) in AnimationUpdate()
72 a->frameCounter -= a->ticksPerFrame[a->frame]; in AnimationUpdate()
79 if (a->frame == 0) in AnimationUpdate()
84 a->frame = (rand() % (ANIMATION_MAX_FRAMES - 1)) + 1; in AnimationUpdate()
85 } while (a->ticksPerFrame[a->frame] < 0); in AnimationUpdate()
89 a->frame = 0; in AnimationUpdate()
94 a->frame++; in AnimationUpdate()
95 if (a->frame >= ANIMATION_MAX_FRAMES || in AnimationUpdate()
96 a->ticksPerFrame[a->frame] < 0) in AnimationUpdate()
98 a->frame = 0; in AnimationUpdate()
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/thrift/
H A DRocketRSocket.md21frame MUST be used for Thrift request-response RPC. REQUEST_RESPONSE frame metadata MUST contain a
23 …ocket frame is only used for internal server errors. ERROR frame error data MUST contain a compact…
25frame is used for responses, declared exceptions, and undeclared exceptions. PAYLOAD frame metadat…
29frame MUST be used for Thrift request-no response RPC. REQUEST_FNF frame metadata MUST contain a c…
39 …ocket frame is only used for internal server errors. ERROR frame error data MUST contain a compact…
43 If first response contains an exception sent in a PAYLOAD frame, it SHOULD have the Complete bit se…
47 …Socket frame is only used for internal server errors. ERROR frame error data MUST contain a compac…
51 If stream response contains an exception sent in a PAYLOAD frame, it SHOULD have the Complete bit s…
57 …OAD RSocket frame is used for responses. PAYLOAD frame metadata MUST contain a compact-serialized …
68 METADATA_PUSH frame sent by the server MUST contain a compact-serialized ServerPushMetadata struct.
[all …]
/dports/editors/emacs-devel/emacs-4d1968b/doc/lispref/
H A Dframes.texi82 @dfn{top-level frame} is a frame whose window-system window is a child
534 Knowing the outer size of a frame is useful for fitting a frame into the
1072 text size of a frame measured in pixels a multiple of the frame's
1258 Most frame parameters have no effect when applied to a frame on a text
1678 Since the outer size of a frame is usually unavailable before a frame
1709 establish a frame's initial width or resize a frame horizontally make
1720 establish a frame's initial size or resize a frame make sure that all
2759 However, you can also create a frame without a minibuffer. Such a frame
3102 The visibility status of a frame is also available as a frame
3254 To create a new child frame or to convert a normal frame into a child
[all …]
/dports/editors/emacs/emacs-27.2/doc/lispref/
H A Dframes.texi82 @dfn{top-level frame} is a frame whose window-system window is a child
529 Knowing the outer size of a frame is useful for fitting a frame into the
1050 text size of a frame measured in pixels a multiple of the frame's
1236 Most frame parameters have no effect when applied to a frame on a text
1656 Since the outer size of a frame is usually unavailable before a frame
1687 establish a frame's initial width or resize a frame horizontally make
1698 establish a frame's initial size or resize a frame make sure that all
2702 However, you can also create a frame without a minibuffer. Such a frame
3045 The visibility status of a frame is also available as a frame
3194 To create a new child frame or to convert a normal frame into a child
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/gui-doc/scribblings/framework/
H A Dgroup.scrbl14 @defmethod*[(((get-mdi-parent) (or/c false/c (is-a?/c frame%))))]{
19 @defmethod*[(((get-frames) (list-of (is-a?/c frame:basic<%>))))]{
23 @defmethod*[(((frame-label-changed (frame (is-a?/c frame:basic<%>))) void?))]{
32 frame group that a frame's visibility is changed.
37 @defmethod*[(((for-each-frame (f ((is-a?/c frame:basic<%>) -> void?))) void?))]{
47 @defmethod*[(((get-active-frame) (is-a?/c frame:basic<%>)))]{
51 @defmethod*[(((set-active-frame (frame (is-a?/c frame:basic<%>))) void?))]{
56 @defmethod*[(((insert-frame (frame (is-a?/c frame:basic<%>))) void?))]{
57 Inserts a frame into the group.
60 @defmethod*[(((remove-frame (frame (is-a?/c frame:basic<%>))) void?))]{
[all …]
/dports/multimedia/transcode/transcode-1.1.7/filter/yuvdenoise/
H A Dmotion.c170 :"=g" (a) in calc_SAD_mmx()
176 return (uint32_t)(a[0]+a[1]+a[2]+a[3]); in calc_SAD_mmx()
205 :"=g" (a) in calc_SAD_mmxe()
210 return a; in calc_SAD_mmxe()
272 :"=g" (a) in calc_SAD_uv_mmx()
277 return (uint32_t)(a[0]+a[1]+a[2]+a[3]); in calc_SAD_uv_mmx()
312 return a; in calc_SAD_uv_mmxe()
379 :"=g" (a) in calc_SAD_half_mmx()
384 return a; in calc_SAD_half_mmx()
417 :"=g" (a) in calc_SAD_half_mmxe()
[all …]
/dports/games/pioneer/pioneer-20210723/src/scenegraph/
H A DAnimation.cpp55 frame++; in Interpolate()
58 const RotationKey &a = chan->rotationKeys[frame]; in Interpolate() local
62 double diffTime = b.time - a.time; in Interpolate()
81 frame++; in Interpolate()
84 const ScaleKey &a = chan->scaleKeys[frame]; in Interpolate() local
91 out = a.scale + (b.scale - a.scale) * factor; in Interpolate()
93 out = a.scale; in Interpolate()
104 frame++; in Interpolate()
107 const PositionKey &a = chan->positionKeys[frame]; in Interpolate() local
114 out = a.position + (b.position - a.position) * factor; in Interpolate()
[all …]
/dports/multimedia/gstreamer1-plugins-v4l2/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/multimedia/gstreamer1-plugins-dv/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/multimedia/gstreamer1-plugins-good/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/audio/gstreamer1-plugins-twolame/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/audio/gstreamer1-plugins-wavpack/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/audio/gstreamer1-plugins-shout2/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/audio/gstreamer1-plugins-jack/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/devel/gstreamer1-plugins-soup/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/graphics/gstreamer1-plugins-png/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/graphics/gstreamer1-plugins-qt/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]
/dports/audio/gstreamer1-plugins-speex/gst-plugins-good-1.16.2/ext/cairo/
H A Dgstcairooverlay.c244 int a = line[0]; in gst_video_overlay_rectangle_premultiply_0() local
269 int a = line[3]; in gst_video_overlay_rectangle_premultiply_3() local
314 int a = line[0]; in gst_video_overlay_rectangle_unpremultiply_0() local
315 if (a) { in gst_video_overlay_rectangle_unpremultiply_0()
316 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
317 line[2] = MIN ((line[2] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
318 line[3] = MIN ((line[3] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_0()
342 if (a) { in gst_video_overlay_rectangle_unpremultiply_3()
343 line[0] = MIN ((line[0] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
344 line[1] = MIN ((line[1] * 255 + a / 2) / a, 255); in gst_video_overlay_rectangle_unpremultiply_3()
[all …]

12345678910>>...4024