search for: lubyagin

Displaying 6 results from an estimated 6 matches for "lubyagin".

2011 Mar 28
1
idct/fdct.c function calls
...tions of "dct" word: ==== pacify at optima-amd64:/usr/src/libtheora-1.2.0alpha1/lib$ grep dct *.c | cut -f1 -d":" | uniq -c ???? 19 analyze.c ???? 28 decode.c ???? 22 encode.c ????? 4 enquant.c ???? 25 fdct.c ???? 42 idct.c ???? 10 state.c ???? 66 tokenize.c ==== -- Alexander Lubyagin
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
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
2011 Apr 05
0
quantize after fdct, _dequant table, and idct
1) What are you doing "mathematically" in a procedure x86/x86enquant: oc_enc_quantize_sse2()? This - the assembler code, and I do not understand mathematically - that's going on there. --- A: 120 121 28 73 -20 -99 -98 -100 123 122 112 108 73 -32 -102 -98 123 123 117 121 100
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 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?