search for: linesize

Displaying 20 results from an estimated 33 matches for "linesize".

2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...pf.bmax = 255; + pf.ashift = 24; + pf.rshift = 16; + pf.gshift = 8; + pf.bshift = 0; + break; + default: + break; + } + return pf; +} + +DisplaySurface* qemu_create_displaysurface(int width, int height, int bpp, int linesize) +{ + DisplaySurface *surface = (DisplaySurface*) qemu_mallocz(sizeof(DisplaySurface)); + if (surface == NULL) { + fprintf(stderr, "qemu_create_displaysurface: malloc failed\n"); + exit(1); + } + + surface->width = width; + surface->height = height; +...
2005 Aug 02
9
Polycom phones w/ two lines on different servers
Hi all - This isn't really directly Asterisk related, but has anyone successfully set up a Polycom phone to register two lines on two different Asterisk boxes? I can get the first line to register, but the second one does not. I can still place calls from that second line, which indicates to me the server, user, and secret are correct. I'm running the newest 2.6 series firmware with the
2004 Dec 16
0
[patch] ffmpeg2theora A/V sync
...%.1f: sync off by %.3f frames\n", + v_pts_out, framesync); + framesync = 1; + } + else + framesync = 0.0; + //now output_resized - if(theoraframes_add_video(&info, output_resized->data[0], - this->video_x,this->video_y,output_resized->linesize[0],e_o_s)){ - //this->output_width,this->output_height,output_resized->linesize[0],e_o_s)){ - ret = -1; - fprintf (stderr,"No theora frames available\n"); - break; + for (j = 0; j < 1 + framesync ; j++) + { + v_pts_out += (1/fps); + if(t...
2008 Jun 16
6
[LLVMdev] PowerPC instruction cache invalidation
...C/PPCJITInfo.cpp.orig 2008-06-11 07:12:39 +++ lib/Target/PowerPC/PPCJITInfo.cpp 2008-06-16 08:42:25 @@ -336,6 +336,20 @@ #if (defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)) && \ defined(__APPLE__) sys_icache_invalidate(Addr, len); +#elif defined(__GNUC__) + const size_t LineSize = 32; + + const intptr_t Mask = ~(LineSize - 1); + const intptr_t StartLine = ((intptr_t) Addr) & Mask; + const intptr_t EndLine = ((intptr_t) Addr + len + LineSize - 1) & Mask; + + for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) + asm volatile("dcbf 0,...
2004 Dec 19
0
[patch] more ffmpeg2theora improvements
...f: sync off by %.2f frames\n", + v_pts_out, framesync); + frameadjust = 1; + } + else + frameadjust = 0; + //now output_resized - if(theoraframes_add_video(&info, output_resized->data[0], - this->video_x,this->video_y,output_resized->linesize[0],e_o_s)){ - //this->output_width,this->output_height,output_resized->linesize[0],e_o_s)){ - ret = -1; - fprintf (stderr,"No theora frames available\n"); - break; + for (j = 0; j < 1 + frameadjust ; j++) + { + v_pts_out += (1/fps); + if...
2005 Sep 27
2
Polycom IP 500 - problem dialing extra numbers
hi there I'm setting up asterisk@home and I'm using Polycom IP 500 phones. When I call a number that has a digital receptionist (i.e. "dial 1 or such and such, dial 2 for this and that...") the Polycom doesn't seem to send the extra digits. When I try it with X-Lite things appear to work fine, so I think the problem is with the Polycom configuration. Here's some
2004 Nov 16
0
metadata switches for ffmpeg2theora
...o.og.header, 1, info.og.header_len,info.outfile); - fwrite (info.og.body, 1, info.og.body_len, info.outfile); + fwrite (info->og.header, 1, info->og.header_len,info->outfile); + fwrite (info->og.body, 1, info->og.body_len, info->outfile); } } @@ -166,7 +164,7 @@ * @param linesize of data * @param e_o_s 1 indicates ond of stream */ -int theoraframes_add_video (uint8_t * data, int width, int height, int linesize,int e_o_s){ +int theoraframes_add_video (theoraframes_info *info, uint8_t * data, int width, int height, int linesize,int e_o_s){ /* map some things from info s...
2006 Jun 21
4
Polycom 601 problems with multiple registrations
I'm stumped on this one and any help would be greatly appreciated. I'm just trying to get my Polycom 601 to have multiple extensions on it. For example, on line 1 I want extension 21, on line 2 I want extension 22, and on line 3 I want extension 23. Ideally I'd actually have each extension appear on 2 lines and therefore filling up all 6. I should be able to do that with the
2010 May 13
1
[LLVMdev] libSystem, __clear_cache(), FreeBSD and ARM
Hi folks, I just tried to build LLVM on FreeBSD/arm. It looks like libSystem doesn't build and requires the following hack: --- lib/System/Memory.cpp +++ lib/System/Memory.cpp @@ -61,7 +61,7 @@ for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) asm volatile("icbi 0, %0" : : "r"(Line)); asm volatile("isync"); -# elif defined(__arm__) && defined(__GNUC__) +# elif defined(__arm__) && defined(__GNUC__) && !defined(__FreeBSD__) // FIXME: Can we safely always call this for __GN...
2007 Jun 26
0
2 commits - libswfdec/swfdec_codec_ffmpeg.c
...c->ctx->width, codec->ctx->height); - img_convert (&picture, PIX_FMT_RGB32, - (AVPicture *) codec->frame, codec->ctx->pix_fmt, - codec->ctx->width, codec->ctx->height); + sws_scale (codec->sws, codec->frame->data, codec->frame->linesize, 0, codec->ctx->height, + picture.data, picture.linesize); *width = codec->ctx->width; *height = codec->ctx->height; *rowstride = codec->ctx->width * 4; @@ -238,6 +247,9 @@ swfdec_video_decoder_ffmpeg_free (Swfdec { SwfdecVideoDecoderFFMpeg *codec = (Swfdec...
2009 Jun 13
2
Polycom registration errors
I'm evaluating using Polycom phones for our call center and I've set up my first phone (a SoundPoint 560) to give it a try. The phone is working and can successfully place and receive calls. But every minute, there's an error in the log file: chan_sip.c: Registration from '<sip:6193644850 at jtsd05>' failed for '192.168.200.99' - Username/auth name
2006 May 23
1
multiple registrations with Polycom IP600
Hi All, Can someone please advise me about configuring my Polycom IP600? I have an account with a SIP based IP Centrex provider. The basic SIP info and line 1 config points to them. That's working fine. I'd like to register line 2 with my own asterisk server. I've tried putting the basic registration info in the line 2 configs...but the phone never registers. Not certain how to
2008 Feb 29
1
[PATCH] ioemu: fix xenfb slow case update
...*src = (SRC_T *)(xenfb->pixels \ + (line * xenfb->row_stride) \ + (x * xenfb->depth / 8)); \ @@ -1080,7 +1080,7 @@ + (line * xenfb->ds->linesize) \ + (x * xenfb->ds->depth / 8)); \ int col; \ - for (col = x ; col < w ; col++) { \ + for (col = x ; col < (x+w)...
2006 Oct 15
0
Ringtones won't work
I was hoping that someone may be able to shed some light on some issues I'm having on trying to get an Asterisk test server up and running. At the moment I have the basics, two Polycom hard phones (301 & 601 with expansion unit (which oddly will not power up)) that can call each other, log into voicemail (one touch) and have custom directories & buddy lists. Unfortunately some of the
2007 Jun 06
1
Polycoms lose registration and won't re-register
For the last few months we have intermittently been experiencing some very strange registration problems with certain polycom phones. Here is some background information: I have about 150 Polycom Soundpoint IP 600s, 601s, and 650s spread between 8 servers at different locations. Each phone is on the same network (and subnet) as the server it connects to. There is no NAT or anything else strange
2005 Apr 04
0
problem about initramfs
...4294667.296000] Determined physical RAM map: [4294667.296000] memory: 07ea8e00 @ 00000000 (usable) [4294667.296000] memory: 07fffe00 @ 08000000 (usable) [4294667.296000] Built 1 zonelists [4294667.296000] Kernel command line: root=/dev/ram0 [4294667.296000] Primary instruction cache 32kB, 4-way, linesize 32 bytes. [4294667.296000] Primary data cache 32kB, 4-way, linesize 32 bytes. [4294667.296000] Synthesized TLB refill handler (24 instructions). [4294667.296000] Synthesized TLB load handler fastpath (36 instructions). [4294667.296000] Synthesized TLB store handler fastpath (31 instructions). [4294...
2006 Jun 01
17
Polycom-Asterisk hints/presence
I set up hints and presence monitoring on some Polycom phones connected to an asterisk server with the expectation that the phones that are "watching" other extensions would be notified when the other extension sis ringing, in addition to the other statuses (on the phone, statuses set by the user on the phone, not registered, etc). I can see when the line is in use, and when it is
2006 Jul 17
0
(no subject)
...mu/hw/vga.c --- a/tools/ioemu/hw/vga.c Fri Jul 14 18:53:27 2006 +0100 +++ b/tools/ioemu/hw/vga.c Mon Jul 17 22:35:54 2006 +0800 @@ -1392,7 +1392,8 @@ static void vga_draw_graphic(VGAState *s static void vga_draw_graphic(VGAState *s, int full_update) { int y1, y, update, page_min, page_max, linesize, y_start, double_scan, mask; - int width, height, shift_control, line_offset, page0, page1, bwidth; + int width, height, shift_control, line_offset, bwidth; + ram_addr_t page0, page1; int disp_width, multi_scan, multi_run; uint8_t *d; uint32_t v, addr1, addr; _____________...
2007 Jun 07
3
Polycom phone registration problem
Hi, One of my users is in trouble with his polycom phone hooked to an asterisk server. The phone works fine for a few days, and then disappears from the registered sip peers in asterisk. The user is able to place outbound phone calls, but can't receive incoming calls until the network plug is unplugged/plugged. Working line XXYYZZAA24/XXYYZZAA24 10.50.5.186 D A 5060
2013 Jan 03
1
Survey package help with svystandardize
...stdes<-svystandardize(testing_dataset, by=~agegr5, over=~sex, population=popage) ------------------------- SUDAAN code: PROC DESCRIPT DATA = "h:\\brfss_data\\brfss11\\pudf11\\txbrfss_pudf11" DESIGN = WR FILETYPE= SUDXPORT NOTSORTED; NEST STSTR SEQNO/MISSUNIT; WEIGHT LLCPWT; SETENV LINESIZE = 106 PAGESIZE = 45 COLWIDTH = 11 TOPMGN = 1; VAR RFSMOK; CATLEVEL 2; STDVAR AGEGR5; STDWGT .128810 .182648 .219077 .299194 .170271; SUBGROUP SEX AGEGR5; LEVELS 2 5 ; TABLES (SEX); [[alternative HTML version deleted]]