Changeset 1533 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
16 Mar 2016, 19:05:53 (9 years ago)
Author:
seregin
Message:

fix syntax naming, ticket #109

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1522 r1533  
    36533653        Int deltaY = 0, deltaU = 0, deltaV = 0;
    36543654
    3655         READ_FLAG( uiCodeVertex, "coded_vertex_flag" );
     3655        READ_FLAG( uiCodeVertex, "coded_res_flag" );
    36563656
    36573657        if( uiCodeVertex )
     
    37063706  UInt sign;
    37073707
    3708   READ_UVLC( prefix, "quotient")  ;
    3709   READ_CODE (rParam, codeWord, "remainder");
     3708  READ_UVLC( prefix, "res_coeff_q");
     3709  READ_CODE (rParam, codeWord, "res_coeff_r");
    37103710  rSymbol = (prefix<<rParam) + codeWord;
    37113711
    37123712  if(rSymbol)
    37133713  {
    3714     READ_FLAG(sign, "sign");
     3714    READ_FLAG(sign, "res_coeff_s");
    37153715    param = sign ? -(Int)(rSymbol) : (Int)(rSymbol);
    37163716  }
Note: See TracChangeset for help on using the changeset viewer.