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
#7 wontfix Early skip decision is not working wjhan wjhan
Description

In the rev. 18, early skip decision, which is turned on with '-1 FEN' option, is not working. It slows down the encoder significantly in inter-slices.

It basically due to the omission of skip-mode when MRG is turned on, however, even when MRG is turned off, early skip decision is not working due to small bug in the code introduced in rev. 18.

Attached patch enables early skip decision when MRG is turned off.

#8 fixed .dsw is obsolete ksuehring nickw
Description

Workspace for Visual Studio 6.0 does not match the correct building rules

#9 fixed Horizontal tab in cfg files cannot be properly handled davidf li@…
Description

Horizontal tab in cfg files cannot be properly handled, which may result in that tools cannot be enabled/disabled by settings in cfg files. A possible solution may be the following revision in char* TAppOption::chomp( char *str )

const char cTab = 9; the char for tab

while( *str == whitespace
*str == cTab )

str++;

char *end = str+strlen(str)-1;

while( *end == whitespace
*end == cTab )

end--;

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