search for: ndct_tokens

Displaying 2 results from an estimated 2 matches for "ndct_tokens".

Did you mean: dct_tokens
2009 Oct 07
1
Possible inefficiency in encode.c
...st started working through the code a few weeks ago. I am working on a requantization tool to reduce bit rates, hopefully on the fly, for some video conferencing work. As I was working through the encoding phase I noticed this line in encode.c: for(ti=_enc->dct_token_offs[pli][zzi];ti<ndct_tokens;ti++){ It's around line 804, but I am working with 1.1b3 sources so it may have moved a bit. Anyway, I am thinking that this line might be an adequate substitute: for(ti=0;ti<ndct_tokens;ti++){ Because the tokens are now stored in separate per plane arrays instead of all strung toge...
2009 Oct 13
3
Proposal for replacing asm code with intrinsics
...st started working through the code a few weeks ago. I am working on a requantization tool to reduce bit rates, hopefully on the fly, for some video conferencing work. As I was working through the encoding phase I noticed this line in encode.c: for(ti=_enc->dct_token_offs[pli][zzi];ti<ndct_tokens;ti++){ It's around line 804, but I am working with 1.1b3 sources so it may have moved a bit. Anyway, I am thinking that this line might be an adequate substitute: for(ti=0;ti<ndct_tokens;ti++){ Because the tokens are now stored in separate per plane arrays instead of all strung toge...