Searched refs:abs_level (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dwmaenc.c295 int abs_level= FFABS(level); local
297 if(abs_level <= s->coef_vlcs[tindex]->max_level){
298 if(run < s->coef_vlcs[tindex]->levels[abs_level-1])
299 code= run + s->int_table[tindex][abs_level-1];
306 if(1<<coef_nb_bits <= abs_level)
309 put_bits(&s->pb, coef_nb_bits, abs_level);
H A Dproresenc_kostya.c393 int max_coeffs, abs_level; local
404 abs_level = FFABS(level);
407 abs_level - 1);
411 lev_cb = ff_prores_lev_to_cb_index[FFMIN(abs_level, 9)];
641 int max_coeffs, abs_level; local
654 abs_level = FFABS(level);
657 abs_level - 1) + 1;
660 lev_cb = ff_prores_lev_to_cb_index[FFMIN(abs_level, 9)];
H A Dmsmpeg4dec.c766 const int abs_level= FFABS(level);
767 const int run1= run - rl->max_run[last][abs_level] - run_diff;
768 if(abs_level<=MAX_LEVEL && run<=MAX_RUN){
769 if(abs_level <= rl->max_level[last][run]){
773 if(abs_level <= rl->max_level[last][run]*2){
777 if(run1>=0 && abs_level <= rl->max_level[last][run1]){
H A Dmpeg4videodec.c1108 const int abs_level= FFABS(level);
1109 if (abs_level<=MAX_LEVEL && run<=MAX_RUN) {
1110 const int run1= run - rl->max_run[last][abs_level] - 1;
1111 if (abs_level <= rl->max_level[last][run]) {
1116 if (abs_level <= rl->max_level[last][run]*2) {
1120 if (run1 >= 0 && abs_level <= rl->max_level[last][run1]) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dwmaenc.c295 int abs_level= FFABS(level); local
297 if(abs_level <= s->coef_vlcs[tindex]->max_level){
298 if(run < s->coef_vlcs[tindex]->levels[abs_level-1])
299 code= run + s->int_table[tindex][abs_level-1];
306 if(1<<coef_nb_bits <= abs_level)
311 if(abs_level == 0x71B && (s->avctx->flags & CODEC_FLAG_BITEXACT)) abs_level=0x71A;
313 put_bits(&s->pb, coef_nb_bits, abs_level);
H A Dmsmpeg4.c1734 const int abs_level= FFABS(level);
1735 const int run1= run - rl->max_run[last][abs_level] - run_diff;
1736 if(abs_level<=MAX_LEVEL && run<=MAX_RUN){
1737 if(abs_level <= rl->max_level[last][run]){
1741 if(abs_level <= rl->max_level[last][run]*2){
1745 if(run1>=0 && abs_level <= rl->max_level[last][run1]){

Completed in 120 milliseconds