similar to: theora encoder reordering, order of puting data from DCT 8x8 blocks to huffman compressor, and puting result of huffman compressor to buffer bitstream memory

Displaying 20 results from an estimated 1100 matches similar to: "theora encoder reordering, order of puting data from DCT 8x8 blocks to huffman compressor, and puting result of huffman compressor to buffer bitstream memory"

2011 Mar 21
0
Contents of theora digest...
---------- Forwarded message ---------- From: digital design <developer.fpga at gmail.com> Date: 21 March 2011 13:38 Subject: Re: [theora] alghorithm of working encoder in libtheora To: bens at alum.mit.edu Cc: Reply-All at xiph.org On 18 March 2011 23:15, Benjamin M. Schwartz <bmschwar at fas.harvard.edu>wrote: > On 03/18/2011 01:44 PM, digital design wrote: > > Now i
2010 Dec 10
2
Bitstream encoded huffman tables always the same
Hello all, I've been working a little inside the Theora decoder when I found that it seems that many videos had the very same huffman tables encoded into their bitstreams (at least the ones that I could take my time to dissecate). I found that the tables are listed as TH_VP31_HUFF_CODES in the file huffenc.c. I tried to investigate a little bit more to see who was setting the bitstream
2005 Oct 27
1
Linker error in Code for Echo canceller of Speex 1.1.10
hi all, i want to use the echo canceller feature of Speex 1.1.10. For that i hav added speex_echo.h in my code.and have called the function. till compilation everything is fine but on linking it is giving me uresolved symbol error ... speexenc.obj : error LNK2001: unresolved external symbol _speex_echo_state_init Debug/speexenc.exe : fatal error LNK1120: 1 unresolved externals Error executing
2011 Mar 31
1
DCT-coefficients in
Why for white-pixel image, oc_enc_fdct8x8_c() returns the matrix with non-zero AC-coefficients? _x[64]: * 107 107 107 107 107 107 107 107 * 107 107 107 107 107 107 107 107 * 107 107 107 107 107 107 107 107 * 107 107 107 107 107 107 107 107 * 107 107 107 107 107 107 107 107 * 107 107 107 107 107 107 107 107 * 107 107 107 107 107 107 107 107 * 107 107 107 107 107 107 107 107 _y[64]: * 3426
2009 Mar 29
1
DCT function?
Looking for the DCT function, but don't see it in the signal pkg. http://rss.acs.unt.edu/Rdoc/library/signal/html/signal.package.html http://rss.acs.unt.edu/Rdoc/library/signal/html/00Index.html As I understand it, the 'signal' functions are ports of the corresponding matlab/octave code, where the DCT exists. Did I miss it (different name?) or is someone working on a port for
2011 Mar 18
3
alghorithm of working encoder in libtheora
Hi, Is somewhere alghorithm description of encoder process implemented in libtheora? May be some drafts? May be frame dataflow throw encoder stages? PLEASE -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/theora/attachments/20110318/c3e8e109/attachment.htm
2011 Mar 28
3
DCT in Theora
> I put debug code in a function in C, > but the function oc_enc_fdct8x8() not called. > Why? There is no function oc_enc_fdct8x8. It's a macro, which usually calls a platform-specific version via _enc->opt_vtable.fdct8x8, though on some platforms, it will call a specific version directly (e.g., oc_enc_fdct8x8_x86_64sse2 on x86-64). All of the functions with platform-specific
2000 Sep 13
3
Lossless video codec
I know this probably transcends the scope of the current aims of Ogg video, but one thing I'd consider extremely useful is a lossless video compressor. There are a few of them out there (e.g. PICVideo's lossless wavelet codec) but I've found no free ones so far. The primary use would be for storage of video clips that would be too cumbersome to store as raw frames but still require
2011 Apr 08
1
Inverse DCT in coding stage
Why in the procedure oc_enc_block_transform_quantize() is used function oc_idct8x8()? After all, Inverse DCT only need to decoding stage, rather than coding?
2009 Jun 03
0
Add callback for twiddling DCT data
Hi, Attached is the first version of the DCT callback. It's still a bit WIP, but now you have something to refer to when I'm rambling :) Best Regards, Thorvald -------------- next part --------------
2004 Sep 11
2
Question about Huffman Tables in Setup Header
There is bit space in Bitstream Header to put Huffman codes in. However, This space can take only 80 kinds of Huffman code set. And This space is divded into DC Huffman code set and AC Huffman set, and There are only 16 choices in each DC and AC Huffman code set. If we want to use this space, we find out best(or proper) performance 80 frequency counts(Huffman code sets) from tens thousands of
2009 Jan 22
2
Converting ddf/dct/sas data definition file to R
Dear all, I was wondering whether anyone knows about a program which converts (part of) a data definition file (such as a .dct file for stata, or .sas file for sas) into an R-script. Here is an example with a .sas file: <-- snipp VALUE HTYPE (default=32) 0 = "Not in household" 1 = "Married couple family household" 2 =
2009 Aug 16
1
VQ and Huffman codebooks creation
Hello, I'd like to know in detail how does the creation of VQ and Huffman codebooks work in Vorbis. I've used the source code from *encoder_example* as guide, but the only reference I've found is the function *_make_words *inside * vorbis_book_init_encode*, which creates the Huffman tree if I'm not wrong. So I have two doubts. The first is that, for creating the Huffman tree (and
2009 Sep 16
1
Where in code can I get access to the data between VQ and Huffman coding steps
I want to analyse compressed data between VQ and Huffman coding steps. Where in source code can I access to data massive for this goal. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/vorbis/attachments/20090916/4529e42d/attachment-0001.htm
2000 Aug 25
0
huffman codebook
Hello, I was wondering if it is possible to change the huffman stuff? A different mapping maybe, or maybe it is not too late to change? Decoding is much more efficient if: -- the huffman tree is left-aligned (i.e., longer codes more to the left) -- and we get the bits msb, not lsb Oh, and I need some clarification about the lsp: the purpose of the lsp is to find a low-bitcount approximation of
2004 Sep 17
0
[Fwd: Re: Question about Huffman Tables in Setup Header]
-------------- next part -------------- An embedded message was scrubbed... From: "Timothy B. Terriberry" <tterribe@vt.edu> Subject: Re: [Theora-dev] Question about Huffman Tables in Setup Header Date: Fri, 17 Sep 2004 03:43:43 -0400 Size: 3441 Url: http://lists.xiph.org/pipermail/theora-dev/attachments/20040917/99108ff9/Theora-devQuestionaboutHuffmanTablesinSetupHeader.mht
2003 Apr 24
2
Huffman decompression
Hello ! A question to all 'Wheel-reinventers': I can build the huffmantrees by hand (on paper) but how to code it? Are there any good URLs out there? Or does the spec supply sufficient information? I tried figure out how oggdec (debugging) does this, but I couldn't get the clou. Thank you Dominik --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project
2011 Apr 07
1
binary stream after tokenizer and huffman
Which procedure/function or structure returns finally formed binary stream? I see lib/tokenize.c and lib/encode.c. But it is too hard to understand novice. Theora algorithm differ in coding with JPEG: http://www.pcs-ip.eu/index.php/main/edu/8 Which function/structure returns stream like this: 100000100011001101101101111101011111111010110011010
2011 Mar 22
0
FPGA implementation in the camera
Here http://lists.xiph.org/pipermail/theora/2004-September/000619.html Andrey describe encoder structure, this like: "I see the following structure of the compressor implemented in the FPGA (Xilinx Spartan 3 1000K gates): 1. Data from the external frame buffer (FB) memory goes to the Bayer-to-YCbCr (4:2:0) converter in overlapping 20x20 tiles that produce 6 8x8 blocks (one macroblock) on the
2011 Mar 22
5
FPGA encode stages flow diagram
Good day! I create diagram of encoder process. Using it i create implementation of encoder in FPGA (Xilinx/Altera). Please critique it. Is there missing stages? Here is blog http://developer-fpga.blogspot.com/ Here is picture of encoding stage 1 https://lh4.googleusercontent.com/-NV8o9DG3jvE/TYjYXr-dYGI/AAAAAAAAAos/U06O-YvhSI0/s1600/stage1.jpg Here is picture of encoding stage 2