Changeset 494 in SHVCSoftware for trunk/source/Lib/TLibVideoIO
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/SHM-4.0-dev (added) merged: 444-493
- Property svn:mergeinfo changed
-
trunk/source
- Property svn:mergeinfo changed
/branches/SHM-4.0-dev/source (added) merged: 445-471,473-479,481-486,488-493
- Property svn:mergeinfo changed
-
trunk/source/Lib/TLibVideoIO/TVideoIOYuv.cpp
r442 r494 473 473 { 474 474 dstPicYuv = new TComPicYuv; 475 #if AUXILIARY_PICTURES 476 dstPicYuv->create( pPicYuv->getWidth(), pPicYuv->getHeight(), pPicYuv->getChromaFormat(), 1, 1, 0 ); 477 #else 475 478 dstPicYuv->create( pPicYuv->getWidth(), pPicYuv->getHeight(), 1, 1, 0 ); 479 #endif 476 480 pPicYuv->copyToPic(dstPicYuv); 477 481 … … 567 571 { 568 572 dstPicTop = new TComPicYuv; 573 #if AUXILIARY_PICTURES 574 dstPicTop->create( pPicTop->getWidth(), pPicTop->getHeight(), pPicTop->getChromaFormat(), 1, 1, 0 ); 575 #else 569 576 dstPicTop->create( pPicTop->getWidth(), pPicTop->getHeight(), 1, 1, 0 ); 577 #endif 570 578 pPicTop->copyToPic(dstPicTop); 571 579 572 580 dstPicBottom = new TComPicYuv; 581 #if AUXILIARY_PICTURES 582 dstPicBottom->create( pPicBottom->getWidth(), pPicBottom->getHeight(), pPicBottom->getChromaFormat(), 1, 1, 0 ); 583 #else 573 584 dstPicBottom->create( pPicBottom->getWidth(), pPicBottom->getHeight(), 1, 1, 0 ); 585 #endif 574 586 pPicBottom->copyToPic(dstPicBottom); 575 587
Note: See TracChangeset for help on using the changeset viewer.