Changeset 222 in SHVCSoftware
- Timestamp:
- 21 May 2013, 19:33:57 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-2.0avc-dev/source/Lib/TLibCommon/TComUpsampleFilter.cpp
r218 r222 345 345 #endif 346 346 #if ILP_DECODED_PICTURE 347 widthBL = pcBasePic->getWidth ();348 heightBL = pcBasePic->getHeight();349 350 347 widthEL = pcUsPic->getWidth (); 351 348 heightEL = pcUsPic->getHeight(); 349 350 widthBL = pcBasePic->getWidth (); 351 heightBL = min<Int>( pcBasePic->getHeight(), heightEL ); 352 352 #endif 353 353 #if SCALED_REF_LAYER_OFFSETS … … 503 503 504 504 #if ILP_DECODED_PICTURE 505 widthBL = pcBasePic->getWidth () >> 1;506 heightBL = pcBasePic->getHeight() >> 1;507 508 505 widthEL = pcUsPic->getWidth () >> 1; 509 506 heightEL = pcUsPic->getHeight() >> 1; 507 508 widthBL = pcBasePic->getWidth () >> 1; 509 heightBL = min<Int>( pcBasePic->getHeight(), heightEL ); 510 510 #endif 511 511
Note: See TracChangeset for help on using the changeset viewer.