Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (7 - 9 of 1442)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Resolution Summary Owner Reporter
#10 fixed Comments in cfg files cannot be properly handled for string parameters davidf li@…
Description

The comments in cfg files cannot be removed from the value strings. Normally, it doesn't matter. But for string parameters like "InputFile", the comment after the parameter will be treated as a part of the parameter. A possible solution may be the following revision in bool TAppOption::setValue( const char *option , char *value )

for( int i = 0 ; i < option_counter ; i++ ){

if( strcmp( options[i], option ) == 0 ){

lines for bug fixing char * pComment = strchr( value , comment ); if( pComment != NULL )

*pComment = 0;

value = chomp( value ); lines for bug fixing

values[ optionindex[i] ] = (char*) malloc((strlen(value)+1)*sizeof(char)); strcpy( values[ optionindex[i] ], value );

return true;

}

}

#11 fixed r19 doesn't build with PLANAR_INTRA 1 and no deblocking filter davidf davidf
Description

Build fails if using:

#define ANG_INTRA 0
#define PLANAR_INTRA 1
#define TENTM_DEBLOCKING_FILTER 0
#define HHI_DEBLOCKING_FILTER 0

Build log:

source/Lib/TLibCommon/TComLoopFilter.cpp: In member function 'Void TComLoopFilter::xDeblockCU(TComDataCU*, UInt, UInt)':
source/Lib/TLibCommon/TComLoopFilter.cpp:198:64: error: 'xEdgeFilterPlanarIntra' was not declared in this scope
source/Lib/TLibCommon/TComLoopFilter.cpp:211:64: error: 'xEdgeFilterPlanarIntra' was not declared in this scope
#12 fixed help info does not contain -int related info davidf nickw
Description

When started with missing parameters in command line, help information does not contain "-int" option related help.

1 2 3 4 5 6 7 8 9 10 11 12 13
Note: See TracQuery for help on using queries.