search for: ftb

Displaying 20 results from an estimated 29 matches for "ftb".

Did you mean: feb
2007 Apr 12
1
[PATCH] Transparent cube
Hi, Recently i have worked on re-writing beryl's transparent cube, and ported 3d plugin to compiz. I'm attaching a patchset here that includes the transparent cube patches (i'll post the 3d plugin when i fix some problems that didn't happen in beryl). Patching order: btf-ftb.patch, clip-planes.patch, plugin-events.patch, cube-paint-order.patch, transparent-cube.patch. Special thanks to Dennis Kasprzyk (who originally wrote some of these patches to compiz, and helped me now with various things), Quinn Storm (who helped me with the options), and Danny Baumann (who did m...
2008 Dec 21
0
[PATCH] Fix ectest to not check a case which isn't guaranteed to work, and which we don't use.
...nclude <stddef.h> #include "entdec.h" #include "os_support.h" +#include "arch.h" void ec_byte_readinit(ec_byte_buffer *_b,unsigned char *_buf,long _bytes){ @@ -106,6 +107,8 @@ ec_uint32 ec_dec_uint(ec_dec *_this,ec_uint32 _ft){ unsigned s; int ftb; t=0; + /*In order to optimize EC_ILOG(), it is undefined for the value 0.*/ + celt_assert(_ft>1); _ft--; ftb=EC_ILOG(_ft); if(ftb>EC_UNIT_BITS){ diff --git a/libcelt/entenc.c b/libcelt/entenc.c index 3da351e..d0cbb0c 100644 --- a/libcelt/entenc.c +++ b/libcelt/entenc.c @@ -100,...
2008 Dec 20
5
ectest failed with gcc-4.2.4
Hi, compiling the latest release 0.5.1 (as well as from git) with gcc-4.2.4 on zenwalk (slackware current), ectest fails; using gcc-3.4.6 all tests succeeds. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/opus/attachments/20081220/68be24c8/attachment-0002.htm
2011 Mar 03
0
[PATCH] Eliminate the ec_int32 and ec_uint32 typedefs.
...- int ret; + celt_uint32 r; + celt_uint32 d; + celt_uint32 s; + int ret; r=_this->rng; d=_this->val; s=r>>_logp; @@ -184,11 +184,11 @@ int ec_dec_bit_logp(ec_dec *_this,unsigned _logp){ } int ec_dec_icdf(ec_dec *_this,const unsigned char *_icdf,unsigned _ftb){ - ec_uint32 r; - ec_uint32 d; - ec_uint32 s; - ec_uint32 t; - int ret; + celt_uint32 r; + celt_uint32 d; + celt_uint32 s; + celt_uint32 t; + int ret; s=_this->rng; d=_this->val; r=s>>_ftb; @@ -204,7 +204,7 @@ int ec_dec_icdf(ec_dec *_this,const unsigne...
2007 Jun 12
0
[PATCH] Made checkFTB wrapable (needed by cubereflex plugin).
..., 8 insertions(+), 1 deletions(-) diff --git a/include/cube.h b/include/cube.h index a8baf1f..c360a73 100644 --- a/include/cube.h +++ b/include/cube.h @@ -75,6 +75,11 @@ typedef void (*CubePaintTopBottomProc) (CompScreen *s, CompOutput *output, int size); +typedef Bool (*CubeCheckFTBProc) (CompScreen *s, + const ScreenPaintAttrib *sAttrib, + const CompTransform *transform, + CompOutput *output); + typedef enum _PaintOrder { BTF = 0, @@ -103,6 +108,7 @@ typedef struct _CubeScreen { CubeGetRotationProc getRotation;...
2007 Jun 12
0
[PATCH] Combined checkFTB and capDirection into one checkOrientation function.
...tions(+), 95 deletions(-) diff --git a/include/cube.h b/include/cube.h index 0a87626..293bad1 100644 --- a/include/cube.h +++ b/include/cube.h @@ -87,16 +87,11 @@ typedef void (*CubePaintInsideProc) (CompScreen *s, CompOutput *output, int size); -typedef Bool (*CubeCheckFTBProc) (CompScreen *s, - const ScreenPaintAttrib *sAttrib, - const CompTransform *transform, - CompOutput *output); - -typedef Bool (*CubeCapDirectionProc) (CompScreen *s, - const ScreenPaintAttrib *sAttrib, - const CompTrans...
2001 Apr 04
2
Play back file from RAM
How can I decode a Vorbis file which is in RAM (not in a file on the disk)?? (Writing it to disk isn't an option...) -- <\___/> / O O \ \_____/ FTB. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages se...
2002 Mar 05
4
Ogg too good?
...lso, I think MP3 people will feel cheated if they never need use a higher quality level than two or three. So please, please, let's have worse quality. It's psychological and maybe silly, but I think q1 should sound a *little* bit bad. <p><p> -- <\___/> / O O \ \_____/ FTB. http://www.artlum.com <p><p><p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the w...
2002 Jan 08
2
advocacy and added options to ogg123
Hey all. Two topics: First, I teach Computer Science at the high school level at a largish school near Austin, Texas. For the past several years there's been a "jukebox" in my room where students could vote for albums to hear during programming lab time, and random tracks off the winning albums play over the speakers in the classroom. This past week I changed the
2002 Jan 08
2
advocacy and added options to ogg123
Hey all. Two topics: First, I teach Computer Science at the high school level at a largish school near Austin, Texas. For the past several years there's been a "jukebox" in my room where students could vote for albums to hear during programming lab time, and random tracks off the winning albums play over the speakers in the classroom. This past week I changed the
2007 Jun 12
0
[PATCH] Added rotation state.
...9 +++++++++ plugins/cube.c | 2 ++ plugins/rotate.c | 12 ++++++++++++ 3 files changed, 23 insertions(+), 0 deletions(-) diff --git a/include/cube.h b/include/cube.h index 00e5b47..4010b6b 100644 --- a/include/cube.h +++ b/include/cube.h @@ -77,6 +77,13 @@ typedef enum _PaintOrder FTB } PaintOrder; +typedef enum _RotationState +{ + RotationNone = 0, + RotationChange, + RotationManual +} RotationState; + typedef struct _CubeScreen { PreparePaintScreenProc preparePaintScreen; DonePaintScreenProc donePaintScreen; @@ -98,6 +105,8 @@ typedef struct _...
2018 Jan 15
0
Natural Language Processing for non-English languages with udpipe
...uages. The following languages are directly available: afrikaans, ancient_greek-proiel, ancient_greek, arabic, basque, belarusian, bulgarian, catalan, chinese, coptic, croatian, czech-cac, czech-cltt, czech, danish, dutch-lassysmall, dutch, english-lines, english-partut, english, estonian, finnish-ftb, finnish, french-partut, french-sequoia, french, galician-treegal, galician, german, gothic, greek, hebrew, hindi, hungarian, indonesian, irish, italian, japanese, kazakh, korean, latin-ittb, latin-proiel, latin, latvian, lithuanian, norwegian-bokmaal, norwegian-nynorsk, old_church_slavonic, persia...
2018 Jan 15
0
Natural Language Processing for non-English languages with udpipe
...uages. The following languages are directly available: afrikaans, ancient_greek-proiel, ancient_greek, arabic, basque, belarusian, bulgarian, catalan, chinese, coptic, croatian, czech-cac, czech-cltt, czech, danish, dutch-lassysmall, dutch, english-lines, english-partut, english, estonian, finnish-ftb, finnish, french-partut, french-sequoia, french, galician-treegal, galician, german, gothic, greek, hebrew, hindi, hungarian, indonesian, irish, italian, japanese, kazakh, korean, latin-ittb, latin-proiel, latin, latvian, lithuanian, norwegian-bokmaal, norwegian-nynorsk, old_church_slavonic, persia...
2002 Jan 04
2
&quot;Quality&quot; vs. &quot;bitrate&quot;
...ywhere in the program, just "quality" and "maximum bitrate" settings. I can't see any real use for a "minumum bitrate" setting. Can anybody think of a reason this wouldn't work out for everybody involved? <p><p> -- <\___/> / O O \ \_____/ FTB. <p><p><p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subjec...
2001 Sep 09
4
Ogg Vorbis and Bitrate
In Ogg Vorbis, does one kilobit equal 1000 bits, or 1024 bits? _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org'
2001 Mar 28
2
Big bug in vorbis encoder?
...into the track. I can send you a copy of the first few seconds if you want to try and debug it. MP3 does awful things to this CD even at high bitrates, you'll be glad to hear that Vorbis seems to do much better - apart from that big glitch at the beginning. -- <\___/> / O O \ \_____/ FTB. http://www.artlum.com --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. N...
2001 Nov 09
0
Re: Game Programming Gems 3
...a game where I can easily have five or six tracks playing at the same time, this could be a problem.... Again, if the decoder was a separate "core" then it would be easier to work on things like this - less source code for people like me to navigate. -- <\___/> / O O \ \_____/ FTB. http://www.artlum.com --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the bod...
2001 Apr 09
3
OT: long - Replacing CD's? was RE: New type of copy- prot ected audio CDs are coming...
fungus wrote: > There are some mp3 players which can record as well. It's > just a matter of time... I've been looking for one for many months but couldn't find one with hifi quality recording/encoding. I'm about to purchase a portable Minidisc recorder for recording intervews. Ross. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage:
2001 Jun 25
3
Quadraphonics
Over the weekend I chanced by the house of a quadraphile friend of mine to check it his SQ setup. For those interested, he has a fairly decent Kenwood linear turntable with what I understand is a rather pricy cartridge manufactured by some company whose name escapes me, hooked into a Fosgate Tate II SQ decoder which is likewise hooked into two X10-D buffers then finally into a Marantz receiver.
2001 May 29
4
AW: Are AMDs preferable? [was: Choosing a processor]
Hi Joane, I think AMDs are 'preferable' of cost/'performance unit'. For standard applications you will have to compare a Duron-900 to a P-III-933; and AMDs will perform much better when it comes to number crunching. And now -- have a look at the prices...! I wouldn't buy any Intel chip today... this may be a 'European' habit, but I think it isn't / shouldn't