Changeset 491 in 3DVCSoftware for branches/HTM-DEV-0.3-dev0/source/App


Ignore:
Timestamp:
24 Jun 2013, 11:43:04 (11 years ago)
Author:
tech
Message:
  • Started integrating changes in decoding process
  • Fixed encoder help output
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev0/source/App/TAppEncoder/TAppEncCfg.cpp

    r446 r491  
    732732        cOSS<<"Frame"<<i;
    733733        opts.addOptions()( cOSS.str(), m_GOPListMvc[k][i-1], GOPEntry() );
     734        if ( i != 1 )
     735        {
     736          opts.opt_list.back()->opt->opt_duplicate = true;
     737        }       
    734738      }
    735739    }
     
    738742      std::ostringstream cOSS1;
    739743      cOSS1<<"FrameI"<<"_l"<<k;
     744
    740745      opts.addOptions()(cOSS1.str(), m_GOPListMvc[k][MAX_GOP], GOPEntry());
     746      if ( k > 1 )
     747      {
     748        opts.opt_list.back()->opt->opt_duplicate = true;
     749      }       
     750
    741751
    742752      for( Int i = 1; i < MAX_GOP + 1; i++ )
     
    745755        cOSS2<<"Frame"<<i<<"_l"<<k;
    746756        opts.addOptions()(cOSS2.str(), m_GOPListMvc[k][i-1], GOPEntry());
     757        if ( i != 1 || k > 0 )
     758        {
     759          opts.opt_list.back()->opt->opt_duplicate = true;
     760        }       
    747761      }
    748762    }
Note: See TracChangeset for help on using the changeset viewer.