Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (43 - 45 of 96)

Ticket Resolution Summary Owner Reporter
#74 fixed Support for more then 10 views tech kwegner
Description

Currently view dependent options from configuration file are parsed wrong. In particular more than 10 views cannot be parsed correctly. Following bugfix solves the problem

In file program_options_lite.h,line 389 following should be added cNameBuffer .resize( name.size() + 10 );

#21 fixed DMM Signalling tech lizhang
Description

'y0+i' should be replaced by 'y0+j' in all the following arrays used in section H.7.3.9.1: wedge_full_tab_idx[ x0 + i ][ y0 + i ] wedge_predtex_tab_idx[ x0 + i ][ y0 + i ] dmm_delta_end_flag[ x0 + i ][ y0 + i ] dmm_delta_end_abs_minus1[ x0 + i ][ y0 + i ] dmm_dc_1_abs[ x0 + i ][ y0 + i ] dmm_dc_1_sign_flag[ x0 + i ][ y0 + i ] dmm_dc_2_abs[ x0 + i ][ y0 + i ] dmm_dc_2_sign_flag[ x0 + i ][ y0 + i ]

'dmm_delta_end_sign_flag[ x0 ][ y0 ]' used in section H.7.3.9.1 should be replaced by 'dmm_delta_end_sign_flag[ x0 + i ][ y0 + j ]'

#22 fixed Semantics related to chain coding tech lizhang
Description

The following two equations, DcOffsetP0[ x0 ][ y0 ] = ( 1 − 2 *edge_dc_0_sign_flag[ x0 ][ y0 ]) * edge_dc_1_abs[ x0 ][ y0 ] (H 12) DcOffsetP1[ x0 ][ y0 ] = ( 1 − 2 *edge_dc_0_sign_flag[ x0 ][ y0 ]) * edge_dc_1_abs[ x0 ][ y0 ]

should be replaced by: DcOffsetP0[ x0 ][ y0 ] = ( 1 − 2 *edge_dc_0_sign_flag[ x0 ][ y0 ]) * edge_dc_0_abs[ x0 ][ y0 ] (H 12) DcOffsetP1[ x0 ][ y0 ] = ( 1 − 2 *edge_dc_1_sign_flag[ x0 ][ y0 ]) * edge_dc_1_abs[ x0 ][ y0 ] (H 13)

Note: See TracQuery for help on using queries.