Changeset 1357 in SHVCSoftware for branches/SHM-dev


Ignore:
Timestamp:
22 Jul 2015, 04:05:35 (9 years ago)
Author:
seregin
Message:

port rev 4435

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r1356 r1357  
    527527  values.values.clear();
    528528  string str;
    529   in >> str;
     529  while (!in.eof())
     530  {
     531    string tmp; in >> tmp; str+=" " + tmp;
     532  }
    530533  if (!str.empty())
    531534  {
     
    576579  values.values.clear();
    577580  string str;
    578   in >> str;
     581  while (!in.eof())
     582  {
     583    string tmp; in >> tmp; str+=" " + tmp;
     584  }
    579585  if (!str.empty())
    580586  {
     
    625631  values.values.clear();
    626632  string str;
    627   in >> str;
     633  while (!in.eof())
     634  {
     635    string tmp; in >> tmp; str+=" " + tmp;
     636  }
    628637  if (!str.empty())
    629638  {
Note: See TracChangeset for help on using the changeset viewer.