Changeset 1533 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 16 Mar 2016, 19:05:53 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1522 r1533 3653 3653 Int deltaY = 0, deltaU = 0, deltaV = 0; 3654 3654 3655 READ_FLAG( uiCodeVertex, "coded_ vertex_flag" );3655 READ_FLAG( uiCodeVertex, "coded_res_flag" ); 3656 3656 3657 3657 if( uiCodeVertex ) … … 3706 3706 UInt sign; 3707 3707 3708 READ_UVLC( prefix, " quotient");3709 READ_CODE (rParam, codeWord, "re mainder");3708 READ_UVLC( prefix, "res_coeff_q"); 3709 READ_CODE (rParam, codeWord, "res_coeff_r"); 3710 3710 rSymbol = (prefix<<rParam) + codeWord; 3711 3711 3712 3712 if(rSymbol) 3713 3713 { 3714 READ_FLAG(sign, " sign");3714 READ_FLAG(sign, "res_coeff_s"); 3715 3715 param = sign ? -(Int)(rSymbol) : (Int)(rSymbol); 3716 3716 }
Note: See TracChangeset for help on using the changeset viewer.