Opened 13 years ago Closed 13 years ago #545 closed defect (fixed)Typo in picture padding/cropping.
Description
There is a typo in the following section of TAppEncCfg::parseCfg( ) that is requiring 4:2:0 picture heights to have an odd number of luma samples instead of preventing that from happening. if (m_aiPad[1] % TComSPS::getCropUnitY(CHROMA_420) != 1) { fprintf(stderr, "Error: picture height is not an integer multiple of the specified chroma subsampling\n"); exit(EXIT_FAILURE); }
The "!= 1" should be "!= 0". Change History (2)comment:1 Changed 13 years ago by DefaultCC Plugin
comment:2 Changed 13 years ago by ksuehring
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
fixed in r2413