Changeset 1200 in 3DVCSoftware for branches/HTM-14.1-update-dev0/source/App/utils/BitrateTargeting/GuessLambdaModifiersMain.cpp
- Timestamp:
- 4 May 2015, 18:38:08 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-14.1-update-dev0/source/App/utils/BitrateTargeting/GuessLambdaModifiersMain.cpp
r872 r1200 2 2 * License, included below. This software may be subject to other third party 3 3 * and contributor rights, including patent rights, and no such rights are 4 * granted under this license. 4 * granted under this license. 5 5 * 6 * Copyright (c) 2010-201 4, ITU/ISO/IEC6 * Copyright (c) 2010-2015, ITU/ISO/IEC 7 7 * All rights reserved. 8 8 * … … 49 49 try 50 50 { 51 if( argc != 3 ) throw WrongNumberOfArgumentsException( ); 52 51 if( argc != 3 ) 52 { 53 throw WrongNumberOfArgumentsException( ); 54 } 55 53 56 std::string initialAdjustmentParameterString( ppArgv[ 1 ] ); 54 57 std::istringstream initialAdjustmentParameterIstream( initialAdjustmentParameterString ); 55 58 56 59 std::string targetBitratesString( ppArgv[ 2 ] ); 57 60 std::istringstream targetBitratesIstream( targetBitratesString ); 58 61 59 62 guessLambdaModifiers( std::cout, initialAdjustmentParameterIstream, targetBitratesIstream, std::cin ); 60 63 return 0; 61 64 62 65 } 63 66 catch( std::exception& e )
Note: See TracChangeset for help on using the changeset viewer.