Changeset 1246 in SHVCSoftware for branches/SHM-dev/source/App/utils/BitrateTargeting/GuessLambdaModifiersMain.cpp
- Timestamp:
- 14 Jul 2015, 00:26:07 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/utils/BitrateTargeting/GuessLambdaModifiersMain.cpp
r595 r1246 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 6 * Copyright (c) 2010-2014, ITU/ISO/IEC … … 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.