Skip to content
Snippets Groups Projects
EncLib.cpp 56.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    /* The copyright in this software is being made available under the BSD
     * License, included below. This software may be subject to other third party
     * and contributor rights, including patent rights, and no such rights are
     * granted under this license.
     *
     * Copyright (c) 2010-2018, ITU/ISO/IEC
     * All rights reserved.
     *
     * Redistribution and use in source and binary forms, with or without
     * modification, are permitted provided that the following conditions are met:
     *
     *  * Redistributions of source code must retain the above copyright notice,
     *    this list of conditions and the following disclaimer.
     *  * Redistributions in binary form must reproduce the above copyright notice,
     *    this list of conditions and the following disclaimer in the documentation
     *    and/or other materials provided with the distribution.
     *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
     *    be used to endorse or promote products derived from this software without
     *    specific prior written permission.
     *
     * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
     * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
     * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     * THE POSSIBILITY OF SUCH DAMAGE.
     */
    
    /** \file     EncLib.cpp
        \brief    encoder class
    */
    
    #include "EncLib.h"
    
    #include "EncModeCtrl.h"
    #include "AQp.h"
    #include "EncCu.h"
    
    #include "CommonLib/Picture.h"
    #include "CommonLib/CommonDef.h"
    #include "CommonLib/ChromaFormat.h"
    #if ENABLE_SPLIT_PARALLELISM
    #include <omp.h>
    #endif
    
    //! \ingroup EncoderLib
    //! \{
    
    // ====================================================================================================================
    // Constructor / destructor / create / destroy
    // ====================================================================================================================
    
    
    
    EncLib::EncLib()
      : m_spsMap( MAX_NUM_SPS )
      , m_ppsMap( MAX_NUM_PPS )
      , m_AUWriterIf( nullptr )
    #if JVET_J0090_MEMORY_BANDWITH_MEASURE
      , m_cacheModel()
    #endif
    {
      m_iPOCLast          = -1;
      m_iNumPicRcvd       =  0;
      m_uiNumAllPicCoded  =  0;
    
      m_iMaxRefPicNum     = 0;
    
    #if ENABLE_SIMD_OPT_BUFFER
      g_pelBufOP.initPelBufOpsX86();
    #endif
    }
    
    EncLib::~EncLib()
    {
    }
    
    void EncLib::create ()
    {
      // initialize global variables
      initROM();
    
    
    
    
      // create processing unit classes
      m_cGOPEncoder.        create( );
      m_cSliceEncoder.      create( getSourceWidth(), getSourceHeight(), m_chromaFormatIDC, m_maxCUWidth, m_maxCUHeight, m_maxTotalCUDepth );
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
    #if ENABLE_SPLIT_PARALLELISM
      m_numCuEncStacks  = m_numSplitThreads == 1 ? 1 : NUM_RESERVERD_SPLIT_JOBS;
    #else
      m_numCuEncStacks  = 1;
    #endif
    #if ENABLE_WPP_PARALLELISM
      m_numCuEncStacks *= ( m_numWppThreads + m_numWppExtraLines );
    #endif
    
      m_cCuEncoder      = new EncCu              [m_numCuEncStacks];
      m_cInterSearch    = new InterSearch        [m_numCuEncStacks];
      m_cIntraSearch    = new IntraSearch        [m_numCuEncStacks];
      m_cTrQuant        = new TrQuant            [m_numCuEncStacks];
      m_CABACEncoder    = new CABACEncoder       [m_numCuEncStacks];
      m_cRdCost         = new RdCost             [m_numCuEncStacks];
      m_CtxCache        = new CtxCache           [m_numCuEncStacks];
    
      for( int jId = 0; jId < m_numCuEncStacks; jId++ )
      {
        m_cCuEncoder[jId].         create( this );
      }
    #else
      m_cCuEncoder.         create( this );
    #endif
    #if JVET_J0090_MEMORY_BANDWITH_MEASURE
      m_cInterSearch.cacheAssign( &m_cacheModel );
    #endif
      const uint32_t widthInCtus   = (getSourceWidth()  + m_maxCUWidth  - 1)  / m_maxCUWidth;
      const uint32_t heightInCtus  = (getSourceHeight() + m_maxCUHeight - 1) / m_maxCUHeight;
      const uint32_t numCtuInFrame = widthInCtus * heightInCtus;
    
      if (m_bUseSAO)
      {
        m_cEncSAO.create( getSourceWidth(), getSourceHeight(), m_chromaFormatIDC, m_maxCUWidth, m_maxCUHeight, m_maxTotalCUDepth, m_log2SaoOffsetScale[CHANNEL_TYPE_LUMA], m_log2SaoOffsetScale[CHANNEL_TYPE_CHROMA] );
        m_cEncSAO.createEncData(getSaoCtuBoundary(), numCtuInFrame);
      }
    
      m_cLoopFilter.create( m_maxTotalCUDepth );
    
    #if JVET_K0371_ALF
      if( m_alf )
      {
        m_cEncALF.create( getSourceWidth(), getSourceHeight(), m_chromaFormatIDC, m_maxCUWidth, m_maxCUHeight, m_maxTotalCUDepth, m_bitDepth, m_inputBitDepth );
      }
    #endif
    
      if ( m_RCEnableRateControl )
      {
        m_cRateCtrl.init( m_framesToBeEncoded, m_RCTargetBitrate, (int)( (double)m_iFrameRate/m_temporalSubsampleRatio + 0.5), m_iGOPSize, m_iSourceWidth, m_iSourceHeight,
                          m_maxCUWidth, m_maxCUHeight,m_RCKeepHierarchicalBit, m_RCUseLCUSeparateModel, m_GOPList );
      }
    
    }
    
    void EncLib::destroy ()
    {
      // destroy processing unit classes
      m_cGOPEncoder.        destroy();
      m_cSliceEncoder.      destroy();
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
      for( int jId = 0; jId < m_numCuEncStacks; jId++ )
      {
        m_cCuEncoder[jId].destroy();
      }
    #else
      m_cCuEncoder.         destroy();
    #endif
    #if JVET_K0371_ALF
      if( m_alf )
      {
        m_cEncALF.destroy();
      }
    #endif
      m_cEncSAO.            destroyEncData();
      m_cEncSAO.            destroy();
      m_cLoopFilter.        destroy();
      m_cRateCtrl.          destroy();
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
      for( int jId = 0; jId < m_numCuEncStacks; jId++ )
      {
        m_cInterSearch[jId].   destroy();
        m_cIntraSearch[jId].   destroy();
      }
    #else
      m_cInterSearch.       destroy();
      m_cIntraSearch.       destroy();
    #endif
    
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
      delete[] m_cCuEncoder;
      delete[] m_cInterSearch;
      delete[] m_cIntraSearch;
      delete[] m_cTrQuant;
      delete[] m_CABACEncoder;
      delete[] m_cRdCost;
      delete[] m_CtxCache;
    #endif
    
    
    
    
      // destroy ROM
      destroyROM();
      return;
    }
    
    void EncLib::init( bool isFieldCoding, AUWriterIf* auWriterIf )
    {
      m_AUWriterIf = auWriterIf;
    
      SPS &sps0=*(m_spsMap.allocatePS(0)); // NOTE: implementations that use more than 1 SPS need to be aware of activation issues.
      PPS &pps0=*(m_ppsMap.allocatePS(0));
    
      // initialize SPS
      xInitSPS(sps0);
    #if HEVC_VPS
      xInitVPS(m_cVPS, sps0);
    #endif
    
    #if ENABLE_SPLIT_PARALLELISM
      if( omp_get_dynamic() )
      {
        omp_set_dynamic( false );
      }
      omp_set_nested( true );
    #endif
    
    
    #if U0132_TARGET_BITS_SATURATION
      if (m_RCCpbSaturationEnabled)
      {
        m_cRateCtrl.initHrdParam(sps0.getVuiParameters()->getHrdParameters(), m_iFrameRate, m_RCInitialCpbFullness);
      }
    #endif
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
      for( int jId = 0; jId < m_numCuEncStacks; jId++ )
      {
        m_cRdCost[jId].setCostMode ( m_costMode );
        m_cRdCost[jId].setUseQtbt  ( m_QTBT );
      }
    #else
      m_cRdCost.setCostMode ( m_costMode );
      m_cRdCost.setUseQtbt  ( m_QTBT );
    #endif
    
      // initialize PPS
      xInitPPS(pps0, sps0);
      xInitRPS(sps0, isFieldCoding);
    
    #if ER_CHROMA_QP_WCG_PPS
      if (m_wcgChromaQpControl.isEnabled())
      {
        PPS &pps1=*(m_ppsMap.allocatePS(1));
        xInitPPS(pps1, sps0);
      }
    #endif
    
      // initialize processing unit classes
      m_cGOPEncoder.  init( this );
      m_cSliceEncoder.init( this, sps0 );
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
      for( int jId = 0; jId < m_numCuEncStacks; jId++ )
      {
        // precache a few objects
        for( int i = 0; i < 10; i++ )
        {
          auto x = m_CtxCache[jId].get();
          m_CtxCache[jId].cache( x );
        }
    
        m_cCuEncoder[jId].init( this, sps0, jId );
    
        // initialize transform & quantization class
        m_cTrQuant[jId].init( jId == 0 ? nullptr : m_cTrQuant[0].getQuant(),
                              1 << m_uiQuadtreeTULog2MaxSize,
                              m_useRDOQ,
                              m_useRDOQTS,
    #if T0196_SELECTIVE_RDOQ
                              m_useSelectiveRDOQ,
    #endif
    #if JVET_K0072
    #else
    #endif
                              true,
                              m_useTransformSkipFast
    #if !INTRA67_3MPM
    #endif
                              , m_QTBT
        );
    
        // initialize encoder search class
        CABACWriter* cabacEstimator = m_CABACEncoder[jId].getCABACEstimator( &sps0 );
        m_cIntraSearch[jId].init( this,
                                  &m_cTrQuant[jId],
                                  &m_cRdCost[jId],
                                  cabacEstimator,
                                  getCtxCache( jId ), m_maxCUWidth, m_maxCUHeight, m_maxTotalCUDepth );
        m_cInterSearch[jId].init( this,
                                  &m_cTrQuant[jId],
                                  m_iSearchRange,
                                  m_bipredSearchRange,
                                  m_motionEstimationSearchMethod,
                                  m_maxCUWidth, m_maxCUHeight, m_maxTotalCUDepth, &m_cRdCost[jId], cabacEstimator, getCtxCache( jId ) );
    
        // link temporary buffets from intra search with inter search to avoid unnecessary memory overhead
        m_cInterSearch[jId].setTempBuffers( m_cIntraSearch[jId].getSplitCSBuf(), m_cIntraSearch[jId].getFullCSBuf(), m_cIntraSearch[jId].getSaveCSBuf() );
      }
    #else  // ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
      m_cCuEncoder.   init( this, sps0 );
    
      // initialize transform & quantization class
      m_cTrQuant.init( nullptr,
                       1 << m_uiQuadtreeTULog2MaxSize,
                       m_useRDOQ,
                       m_useRDOQTS,
    #if T0196_SELECTIVE_RDOQ
                       m_useSelectiveRDOQ,
    #endif
    #if JVET_K0072
    #else
    #endif
                       true,
                       m_useTransformSkipFast
    #if !INTRA67_3MPM
    #endif
                       , m_QTBT
      );
    
      // initialize encoder search class
      CABACWriter* cabacEstimator = m_CABACEncoder.getCABACEstimator(&sps0);
      m_cIntraSearch.init( this,
                           &m_cTrQuant,
                           &m_cRdCost,
                           cabacEstimator,
                           getCtxCache(), m_maxCUWidth, m_maxCUHeight, m_maxTotalCUDepth );
      m_cInterSearch.init( this,
                           &m_cTrQuant,
                           m_iSearchRange,
                           m_bipredSearchRange,
                           m_motionEstimationSearchMethod,
                           m_maxCUWidth, m_maxCUHeight, m_maxTotalCUDepth, &m_cRdCost, cabacEstimator, getCtxCache() );
    
      // link temporary buffets from intra search with inter search to avoid unneccessary memory overhead
      m_cInterSearch.setTempBuffers( m_cIntraSearch.getSplitCSBuf(), m_cIntraSearch.getFullCSBuf(), m_cIntraSearch.getSaveCSBuf() );
    #endif // ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
    
      m_iMaxRefPicNum = 0;
    
    #if HEVC_USE_SCALING_LISTS
    #if ER_CHROMA_QP_WCG_PPS
      if( m_wcgChromaQpControl.isEnabled() )
      {
        xInitScalingLists( sps0, *m_ppsMap.getPS(1) );
        xInitScalingLists( sps0, pps0 );
      }
      else
    #endif
      {
        xInitScalingLists( sps0, pps0 );
      }
    #endif
    #if ENABLE_WPP_PARALLELISM
      m_entropyCodingSyncContextStateVec.resize( pps0.pcv->heightInCtus );
    #endif
    }
    
    #if HEVC_USE_SCALING_LISTS
    void EncLib::xInitScalingLists(SPS &sps, PPS &pps)
    {
      // Initialise scaling lists
      // The encoder will only use the SPS scaling lists. The PPS will never be marked present.
      const int maxLog2TrDynamicRange[MAX_NUM_CHANNEL_TYPE] =
      {
          sps.getMaxLog2TrDynamicRange(CHANNEL_TYPE_LUMA),
          sps.getMaxLog2TrDynamicRange(CHANNEL_TYPE_CHROMA)
      };
    
      Quant* quant = getTrQuant()->getQuant();
    
      if(getUseScalingListId() == SCALING_LIST_OFF)
      {
        quant->setFlatScalingList(maxLog2TrDynamicRange, sps.getBitDepths());
        quant->setUseScalingList(false);
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
        for( int jId = 1; jId < m_numCuEncStacks; jId++ )
        {
          getTrQuant( jId )->getQuant()->setFlatScalingList( maxLog2TrDynamicRange, sps.getBitDepths() );
          getTrQuant( jId )->getQuant()->setUseScalingList( false );
        }
    #endif
        sps.setScalingListPresentFlag(false);
        pps.setScalingListPresentFlag(false);
      }
      else if(getUseScalingListId() == SCALING_LIST_DEFAULT)
      {
        sps.getScalingList().setDefaultScalingList ();
        sps.setScalingListPresentFlag(false);
        pps.setScalingListPresentFlag(false);
    
        quant->setScalingList(&(sps.getScalingList()), maxLog2TrDynamicRange, sps.getBitDepths());
        quant->setUseScalingList(true);
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
        for( int jId = 1; jId < m_numCuEncStacks; jId++ )
        {
          getTrQuant( jId )->getQuant()->setUseScalingList( true );
        }
    #endif
      }
      else if(getUseScalingListId() == SCALING_LIST_FILE_READ)
      {
        sps.getScalingList().setDefaultScalingList ();
        if(sps.getScalingList().xParseScalingList(getScalingListFileName()))
        {
          THROW( "parse scaling list");
        }
        sps.getScalingList().checkDcOfMatrix();
        sps.setScalingListPresentFlag(sps.getScalingList().checkDefaultScalingList());
        pps.setScalingListPresentFlag(false);
    
        quant->setScalingList(&(sps.getScalingList()), maxLog2TrDynamicRange, sps.getBitDepths());
        quant->setUseScalingList(true);
    #if ENABLE_SPLIT_PARALLELISM || ENABLE_WPP_PARALLELISM
        for( int jId = 1; jId < m_numCuEncStacks; jId++ )
        {
          getTrQuant( jId )->getQuant()->setUseScalingList( true );
        }
    #endif
      }
      else
      {
        THROW("error : ScalingList == " << getUseScalingListId() << " not supported\n");
      }
    
      if (getUseScalingListId() != SCALING_LIST_OFF)
      {
        // Prepare delta's:
        for(uint32_t sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
        {
          const int predListStep = (sizeId == SCALING_LIST_32x32? (SCALING_LIST_NUM/NUMBER_OF_PREDICTION_MODES) : 1); // if 32x32, skip over chroma entries.
    
          for(uint32_t listId = 0; listId < SCALING_LIST_NUM; listId+=predListStep)
          {
            sps.getScalingList().checkPredMode( sizeId, listId );
          }
        }
      }
    }
    #endif
    
    // ====================================================================================================================
    // Public member functions
    // ====================================================================================================================
    
    void EncLib::deletePicBuffer()
    {
      PicList::iterator iterPic = m_cListPic.begin();
      int iSize = int( m_cListPic.size() );
    
      for ( int i = 0; i < iSize; i++ )
      {
        Picture* pcPic = *(iterPic++);
    
        pcPic->destroy();
    
        // get rid of the qpadaption layer
        while( pcPic->aqlayer.size() )
        {
          delete pcPic->aqlayer.back(); pcPic->aqlayer.pop_back();
        }
    
        delete pcPic;
        pcPic = NULL;
      }
    }
    
    /**
     - Application has picture buffer list with size of GOP + 1
     - Picture buffer list acts like as ring buffer
     - End of the list has the latest picture
     .
     \param   flush               cause encoder to encode a partial GOP
     \param   pcPicYuvOrg         original YUV picture
     \param   pcPicYuvTrueOrg
     \param   snrCSC
     \retval  rcListPicYuvRecOut  list of reconstruction YUV pictures
     \retval  accessUnitsOut      list of output access units
     \retval  iNumEncoded         number of encoded pictures
     */
    void EncLib::encode( bool flush, PelStorage* pcPicYuvOrg, PelStorage* cPicYuvTrueOrg, const InputColourSpaceConversion snrCSC, std::list<PelUnitBuf*>& rcListPicYuvRecOut,
                         int& iNumEncoded )
    {
      //PROF_ACCUM_AND_START_NEW_SET( getProfilerPic(), P_GOP_LEVEL );
      if (pcPicYuvOrg != NULL)
      {
        // get original YUV
        Picture* pcPicCurr = NULL;
    
    #if ER_CHROMA_QP_WCG_PPS
        int ppsID=-1; // Use default PPS ID
        if (getWCGChromaQPControl().isEnabled())
        {
          ppsID=getdQPs()[ m_iPOCLast+1 ];
          ppsID+=(getSwitchPOC() != -1 && (m_iPOCLast+1 >= getSwitchPOC())?1:0);
        }
        xGetNewPicBuffer( rcListPicYuvRecOut,
                          pcPicCurr, ppsID );
    #else
        xGetNewPicBuffer( rcListPicYuvRecOut,
                          pcPicCurr, -1 ); // Uses default PPS ID. However, could be modified, for example, to use a PPS ID as a function of POC (m_iPOCLast+1)
    #endif
    
        {
          const PPS *pPPS=(ppsID<0) ? m_ppsMap.getFirstPS() : m_ppsMap.getPS(ppsID);
          const SPS *pSPS=m_spsMap.getPS(pPPS->getSPSId());
    
          pcPicCurr->M_BUFS( 0, PIC_ORIGINAL ).swap( *pcPicYuvOrg );
    
          pcPicCurr->finalInit( *pSPS, *pPPS );
        }
    
        pcPicCurr->poc = m_iPOCLast;
    
        // compute image characteristics
        if ( getUseAdaptiveQP() )
        {
          AQpPreanalyzer::preanalyze( pcPicCurr );
        }
      }
    
      if ((m_iNumPicRcvd == 0) || (!flush && (m_iPOCLast != 0) && (m_iNumPicRcvd != m_iGOPSize) && (m_iGOPSize != 0)))
      {
        iNumEncoded = 0;
        return;
      }
    
      if ( m_RCEnableRateControl )
      {
        m_cRateCtrl.initRCGOP( m_iNumPicRcvd );
      }
    
      // compress GOP
      m_cGOPEncoder.compressGOP( m_iPOCLast, m_iNumPicRcvd, m_cListPic, rcListPicYuvRecOut,
                                 false, false, snrCSC, m_printFrameMSE );
    
      if ( m_RCEnableRateControl )
      {
        m_cRateCtrl.destroyRCGOP();
      }
    
      iNumEncoded         = m_iNumPicRcvd;
      m_iNumPicRcvd       = 0;
      m_uiNumAllPicCoded += iNumEncoded;
    }
    
    /**------------------------------------------------
     Separate interlaced frame into two fields
     -------------------------------------------------**/
    void separateFields(Pel* org, Pel* dstField, uint32_t stride, uint32_t width, uint32_t height, bool isTop)
    {
      if (!isTop)
      {
        org += stride;
      }
      for (int y = 0; y < height>>1; y++)
      {
        for (int x = 0; x < width; x++)
        {
          dstField[x] = org[x];
        }
    
        dstField += stride;
        org += stride*2;
      }
    
    }
    
    void EncLib::encode( bool flush, PelStorage* pcPicYuvOrg, PelStorage* pcPicYuvTrueOrg, const InputColourSpaceConversion snrCSC, std::list<PelUnitBuf*>& rcListPicYuvRecOut,
                         int& iNumEncoded, bool isTff )
    {
      iNumEncoded = 0;
    
      for (int fieldNum=0; fieldNum<2; fieldNum++)
      {
        if (pcPicYuvOrg)
        {
          /* -- field initialization -- */
          const bool isTopField=isTff==(fieldNum==0);
    
          Picture *pcField;
          xGetNewPicBuffer( rcListPicYuvRecOut, pcField, -1 );
    
          for (uint32_t comp = 0; comp < ::getNumberValidComponents(pcPicYuvOrg->chromaFormat); comp++)
          {
            const ComponentID compID = ComponentID(comp);
            {
              PelBuf compBuf = pcPicYuvOrg->get( compID );
              separateFields( compBuf.buf,
                             pcField->getOrigBuf().get(compID).buf,
                             compBuf.stride,
                             compBuf.width,
                             compBuf.height,
                             isTopField);
            }
          }
    
          {
            int ppsID=-1; // Use default PPS ID
            const PPS *pPPS=(ppsID<0) ? m_ppsMap.getFirstPS() : m_ppsMap.getPS(ppsID);
            const SPS *pSPS=m_spsMap.getPS(pPPS->getSPSId());
    
            pcField->finalInit( *pSPS, *pPPS );
          }
    
          pcField->poc = m_iPOCLast;
          pcField->reconstructed = false;
    
          pcField->setBorderExtension(false);// where is this normally?
    
          pcField->topField = isTopField;                  // interlaced requirement
    
          // compute image characteristics
          if ( getUseAdaptiveQP() )
          {
            AQpPreanalyzer::preanalyze( pcField );
          }
        }
    
        if ( m_iNumPicRcvd && ((flush&&fieldNum==1) || (m_iPOCLast/2)==0 || m_iNumPicRcvd==m_iGOPSize ) )
        {
          // compress GOP
          m_cGOPEncoder.compressGOP( m_iPOCLast, m_iNumPicRcvd, m_cListPic, rcListPicYuvRecOut,
                                     true, isTff, snrCSC, m_printFrameMSE );
    
          iNumEncoded += m_iNumPicRcvd;
          m_uiNumAllPicCoded += m_iNumPicRcvd;
          m_iNumPicRcvd = 0;
        }
      }
    }
    
    
    // ====================================================================================================================
    // Protected member functions
    // ====================================================================================================================
    
    /**
     - Application has picture buffer list with size of GOP + 1
     - Picture buffer list acts like as ring buffer
     - End of the list has the latest picture
     .
     \retval rpcPic obtained picture buffer
     */
    void EncLib::xGetNewPicBuffer ( std::list<PelUnitBuf*>& rcListPicYuvRecOut, Picture*& rpcPic, int ppsId )
    {
      // rotate he output buffer
      rcListPicYuvRecOut.push_back( rcListPicYuvRecOut.front() ); rcListPicYuvRecOut.pop_front();
    
      rpcPic=0;
    
      // At this point, the SPS and PPS can be considered activated - they are copied to the new Pic.
      const PPS *pPPS=(ppsId<0) ? m_ppsMap.getFirstPS() : m_ppsMap.getPS(ppsId);
      CHECK(!(pPPS!=0), "Unspecified error");
      const PPS &pps=*pPPS;
    
      const SPS *pSPS=m_spsMap.getPS(pps.getSPSId());
      CHECK(!(pSPS!=0), "Unspecified error");
      const SPS &sps=*pSPS;
    
      Slice::sortPicList(m_cListPic);
    
      // use an entry in the buffered list if the maximum number that need buffering has been reached:
      if (m_cListPic.size() >= (uint32_t)(m_iGOPSize + getMaxDecPicBuffering(MAX_TLAYER-1) + 2) )
      {
        PicList::iterator iterPic  = m_cListPic.begin();
        int iSize = int( m_cListPic.size() );
        for ( int i = 0; i < iSize; i++ )
        {
          rpcPic = *iterPic;
          if( ! rpcPic->referenced )
          {
            break;
          }
          iterPic++;
        }
    
        // If PPS ID is the same, we will assume that it has not changed since it was last used
        // and return the old object.
        if (pps.getPPSId() != rpcPic->cs->pps->getPPSId())
        {
          // the IDs differ - free up an entry in the list, and then create a new one, as with the case where the max buffering state has not been reached.
          rpcPic->destroy();
          delete rpcPic;
          m_cListPic.erase(iterPic);
          rpcPic=0;
        }
      }
    
      if (rpcPic==0)
      {
        rpcPic = new Picture;
    
        rpcPic->create( sps.getChromaFormatIdc(), Size( sps.getPicWidthInLumaSamples(), sps.getPicHeightInLumaSamples()), sps.getMaxCUWidth(), sps.getMaxCUWidth()+16, false );
        if ( getUseAdaptiveQP() )
        {
          const uint32_t iMaxDQPLayer = pps.getMaxCuDQPDepth()+1;
          rpcPic->aqlayer.resize( iMaxDQPLayer );
          for (uint32_t d = 0; d < iMaxDQPLayer; d++)
          {
            rpcPic->aqlayer[d] = new AQpLayer( sps.getPicWidthInLumaSamples(), sps.getPicHeightInLumaSamples(), sps.getMaxCUWidth()>>d, sps.getMaxCUHeight()>>d );
          }
        }
    
        m_cListPic.push_back( rpcPic );
      }
    
      rpcPic->setBorderExtension( false );
      rpcPic->reconstructed = false;
      rpcPic->referenced = true;
    
    
      m_iPOCLast++;
      m_iNumPicRcvd++;
    }
    
    
    #if HEVC_VPS
    void EncLib::xInitVPS(VPS &vps, const SPS &sps)
    {
      // The SPS must have already been set up.
      // set the VPS profile information.
      *vps.getPTL() = *sps.getPTL();
      vps.setMaxOpSets(1);
      vps.getTimingInfo()->setTimingInfoPresentFlag       ( false );
      vps.setNumHrdParameters( 0 );
    
      vps.createHrdParamBuffer();
      for( uint32_t i = 0; i < vps.getNumHrdParameters(); i ++ )
      {
        vps.setHrdOpSetIdx( 0, i );
        vps.setCprmsPresentFlag( false, i );
        // Set up HrdParameters here.
      }
    }
    #endif
    
    void EncLib::xInitSPS(SPS &sps)
    {
      ProfileTierLevel& profileTierLevel = *sps.getPTL()->getGeneralPTL();
      profileTierLevel.setLevelIdc                    (m_level);
      profileTierLevel.setTierFlag                    (m_levelTier);
      profileTierLevel.setProfileIdc                  (m_profile);
      profileTierLevel.setProfileCompatibilityFlag    (m_profile, 1);
      profileTierLevel.setProgressiveSourceFlag       (m_progressiveSourceFlag);
      profileTierLevel.setInterlacedSourceFlag        (m_interlacedSourceFlag);
      profileTierLevel.setNonPackedConstraintFlag     (m_nonPackedConstraintFlag);
      profileTierLevel.setFrameOnlyConstraintFlag     (m_frameOnlyConstraintFlag);
      profileTierLevel.setBitDepthConstraint          (m_bitDepthConstraintValue);
      profileTierLevel.setChromaFormatConstraint      (m_chromaFormatConstraintValue);
      profileTierLevel.setIntraConstraintFlag         (m_intraConstraintFlag);
      profileTierLevel.setOnePictureOnlyConstraintFlag(m_onePictureOnlyConstraintFlag);
      profileTierLevel.setLowerBitRateConstraintFlag  (m_lowerBitRateConstraintFlag);
    
      if ((m_profile == Profile::MAIN10) && (m_bitDepth[CHANNEL_TYPE_LUMA] == 8) && (m_bitDepth[CHANNEL_TYPE_CHROMA] == 8))
      {
        /* The above constraint is equal to Profile::MAIN */
        profileTierLevel.setProfileCompatibilityFlag(Profile::MAIN, 1);
      }
      if (m_profile == Profile::MAIN)
      {
        /* A Profile::MAIN10 decoder can always decode Profile::MAIN */
        profileTierLevel.setProfileCompatibilityFlag( Profile::MAIN10, 1 );
      }
    
      /* XXX: should Main be marked as compatible with still picture? */
      /* XXX: may be a good idea to refactor the above into a function
       * that chooses the actual compatibility based upon options */
    
      sps.setPicWidthInLumaSamples  ( m_iSourceWidth      );
      sps.setPicHeightInLumaSamples ( m_iSourceHeight     );
      sps.setConformanceWindow      ( m_conformanceWindow );
      sps.setMaxCUWidth             ( m_maxCUWidth        );
      sps.setMaxCUHeight            ( m_maxCUHeight       );
      sps.setMaxCodingDepth         ( m_maxTotalCUDepth   );
      sps.setChromaFormatIdc        ( m_chromaFormatIDC   );
      sps.setLog2DiffMaxMinCodingBlockSize(m_log2DiffMaxMinCodingBlockSize);
    
      sps.getSpsNext().setNextToolsEnabled      ( m_profile == Profile::NEXT );
      sps.getSpsNext().setUseQTBT               ( m_QTBT );
      sps.getSpsNext().setCTUSize               ( m_CTUSize );
      sps.getSpsNext().setMinQTSizes            ( m_uiMinQT );
      sps.getSpsNext().setUseLargeCTU           ( m_LargeCTU );
      sps.getSpsNext().setMaxBTDepth            ( m_uiMaxBTDepth, m_uiMaxBTDepthI, m_uiMaxBTDepthIChroma );
      sps.getSpsNext().setUseDualITree          ( m_dualITree );
    #if JVET_K0346
      sps.getSpsNext().setSubPuMvpMode(m_SubPuMvpMode);
      sps.getSpsNext().setSubPuMvpLog2Size(m_SubPuMvpLog2Size);
    #endif
    #if JVET_K0357_AMVR
      sps.getSpsNext().setImvMode               ( ImvMode(m_ImvMode) );
      sps.getSpsNext().setUseIMV                ( m_ImvMode != IMV_OFF );
    #endif
    #if JVET_K0072
    #else
    #endif
    #if JVET_K_AFFINE
      sps.getSpsNext().setUseHighPrecMv         ( m_highPrecMv );
      sps.getSpsNext().setUseAffine             ( m_Affine );
    #if JVET_K0337_AFFINE_6PARA
      sps.getSpsNext().setUseAffineType         ( m_AffineType );
    #endif
    #endif
    #if JVET_K0346 && !JVET_K_AFFINE
      sps.getSpsNext().setUseHighPrecMv(m_highPrecMv);
    #endif
      sps.getSpsNext().setDisableMotCompress    ( m_DisableMotionCompression );
      sps.getSpsNext().setMTTMode               ( m_MTTMode );
    #if JVET_K0190
      sps.getSpsNext().setUseLMChroma           ( m_LMChroma ? true : false );
    #if !JVET_K0190
      sps.getSpsNext().setELMMode               ( m_LMChroma > 1 ? m_LMChroma - 1 : 0 );
    #endif
    #endif
    #if ENABLE_WPP_PARALLELISM
      sps.getSpsNext().setUseNextDQP            ( m_AltDQPCoding );
    #endif
    #if JVET_K1000_SIMPLIFIED_EMT
      sps.getSpsNext().setUseIntraEMT           ( m_IntraEMT );
      sps.getSpsNext().setUseInterEMT           ( m_InterEMT );
    #endif
    
      // ADD_NEW_TOOL : (encoder lib) set tool enabling flags and associated parameters here
    
      int minCUSize = ( /*sps.getSpsNext().getUseQTBT() ? 1 << MIN_CU_LOG2 :*/ sps.getMaxCUWidth() >> sps.getLog2DiffMaxMinCodingBlockSize() );
      int log2MinCUSize = 0;
      while(minCUSize > 1)
      {
        minCUSize >>= 1;
        log2MinCUSize++;
      }
    
      sps.setLog2MinCodingBlockSize(log2MinCUSize);
    
      sps.setPCMLog2MinSize (m_uiPCMLog2MinSize);
      sps.setUsePCM        ( m_usePCM           );
      sps.setPCMLog2MaxSize( m_pcmLog2MaxSize  );
    
      sps.setQuadtreeTULog2MaxSize( m_uiQuadtreeTULog2MaxSize );
      sps.setQuadtreeTULog2MinSize( m_uiQuadtreeTULog2MinSize );
      sps.setQuadtreeTUMaxDepthInter( m_uiQuadtreeTUMaxDepthInter    );
      sps.setQuadtreeTUMaxDepthIntra( m_uiQuadtreeTUMaxDepthIntra    );
    
      sps.setSPSTemporalMVPEnabledFlag((getTMVPModeId() == 2 || getTMVPModeId() == 1));
    
      sps.setMaxTrSize   ( 1 << m_uiQuadtreeTULog2MaxSize );
    
      sps.setUseAMP ( m_useAMP );
    
      for (uint32_t channelType = 0; channelType < MAX_NUM_CHANNEL_TYPE; channelType++)
      {
        sps.setBitDepth      (ChannelType(channelType), m_bitDepth[channelType] );
        sps.setQpBDOffset  (ChannelType(channelType), (6 * (m_bitDepth[channelType] - 8)));
        sps.setPCMBitDepth (ChannelType(channelType), m_PCMBitDepth[channelType]         );
      }
    
      sps.setUseSAO( m_bUseSAO );
    
      sps.setMaxTLayers( m_maxTempLayer );
      sps.setTemporalIdNestingFlag( ( m_maxTempLayer == 1 ) ? true : false );
    
      for (int i = 0; i < min(sps.getMaxTLayers(),(uint32_t) MAX_TLAYER); i++ )
      {
        sps.setMaxDecPicBuffering(m_maxDecPicBuffering[i], i);
        sps.setNumReorderPics(m_numReorderPics[i], i);
      }
    
      sps.setPCMFilterDisableFlag  ( m_bPCMFilterDisableFlag );
    #if HEVC_USE_SCALING_LISTS
      sps.setScalingListFlag ( (m_useScalingListId == SCALING_LIST_OFF) ? 0 : 1 );
    #endif
    #if HEVC_USE_INTRA_SMOOTHING_T32 || HEVC_USE_INTRA_SMOOTHING_T64
      sps.setUseStrongIntraSmoothing( m_useStrongIntraSmoothing );
    #endif
    #if JVET_K0371_ALF
      sps.setUseALF( m_alf );
    #endif
      sps.setVuiParametersPresentFlag(getVuiParametersPresentFlag());
    
      if (sps.getVuiParametersPresentFlag())
      {
        VUI* pcVUI = sps.getVuiParameters();
        pcVUI->setAspectRatioInfoPresentFlag(getAspectRatioInfoPresentFlag());
        pcVUI->setAspectRatioIdc(getAspectRatioIdc());
        pcVUI->setSarWidth(getSarWidth());
        pcVUI->setSarHeight(getSarHeight());
        pcVUI->setOverscanInfoPresentFlag(getOverscanInfoPresentFlag());
        pcVUI->setOverscanAppropriateFlag(getOverscanAppropriateFlag());
        pcVUI->setVideoSignalTypePresentFlag(getVideoSignalTypePresentFlag());
        pcVUI->setVideoFormat(getVideoFormat());
        pcVUI->setVideoFullRangeFlag(getVideoFullRangeFlag());
        pcVUI->setColourDescriptionPresentFlag(getColourDescriptionPresentFlag());
        pcVUI->setColourPrimaries(getColourPrimaries());
        pcVUI->setTransferCharacteristics(getTransferCharacteristics());
        pcVUI->setMatrixCoefficients(getMatrixCoefficients());
        pcVUI->setChromaLocInfoPresentFlag(getChromaLocInfoPresentFlag());
        pcVUI->setChromaSampleLocTypeTopField(getChromaSampleLocTypeTopField());
        pcVUI->setChromaSampleLocTypeBottomField(getChromaSampleLocTypeBottomField());
        pcVUI->setNeutralChromaIndicationFlag(getNeutralChromaIndicationFlag());
        pcVUI->setDefaultDisplayWindow(getDefaultDisplayWindow());
        pcVUI->setFrameFieldInfoPresentFlag(getFrameFieldInfoPresentFlag());
        pcVUI->setFieldSeqFlag(false);
        pcVUI->setHrdParametersPresentFlag(false);
        pcVUI->getTimingInfo()->setPocProportionalToTimingFlag(getPocProportionalToTimingFlag());
        pcVUI->getTimingInfo()->setNumTicksPocDiffOneMinus1   (getNumTicksPocDiffOneMinus1()   );
        pcVUI->setBitstreamRestrictionFlag(getBitstreamRestrictionFlag());
    #if HEVC_TILES_WPP
        pcVUI->setTilesFixedStructureFlag(getTilesFixedStructureFlag());
    #endif
        pcVUI->setMotionVectorsOverPicBoundariesFlag(getMotionVectorsOverPicBoundariesFlag());
        pcVUI->setMinSpatialSegmentationIdc(getMinSpatialSegmentationIdc());
        pcVUI->setMaxBytesPerPicDenom(getMaxBytesPerPicDenom());
        pcVUI->setMaxBitsPerMinCuDenom(getMaxBitsPerMinCuDenom());
        pcVUI->setLog2MaxMvLengthHorizontal(getLog2MaxMvLengthHorizontal());
        pcVUI->setLog2MaxMvLengthVertical(getLog2MaxMvLengthVertical());
      }
    
      sps.setNumLongTermRefPicSPS(NUM_LONG_TERM_REF_PIC_SPS);
      CHECK(!(NUM_LONG_TERM_REF_PIC_SPS <= MAX_NUM_LONG_TERM_REF_PICS), "Unspecified error");
      for (int k = 0; k < NUM_LONG_TERM_REF_PIC_SPS; k++)
      {
        sps.setLtRefPicPocLsbSps(k, 0);
        sps.setUsedByCurrPicLtSPSFlag(k, 0);
      }
    
    #if U0132_TARGET_BITS_SATURATION
      if( getPictureTimingSEIEnabled() || getDecodingUnitInfoSEIEnabled() || getCpbSaturationEnabled() )
    #else
      if( getPictureTimingSEIEnabled() || getDecodingUnitInfoSEIEnabled() )
    #endif
      {
        xInitHrdParameters(sps);
      }
      if( getBufferingPeriodSEIEnabled() || getPictureTimingSEIEnabled() || getDecodingUnitInfoSEIEnabled() )
      {
        sps.getVuiParameters()->setHrdParametersPresentFlag( true );
      }
    
      // Set up SPS range extension settings
      sps.getSpsRangeExtension().setTransformSkipRotationEnabledFlag(m_transformSkipRotationEnabledFlag);
      sps.getSpsRangeExtension().setTransformSkipContextEnabledFlag(m_transformSkipContextEnabledFlag);
      for (uint32_t signallingModeIndex = 0; signallingModeIndex < NUMBER_OF_RDPCM_SIGNALLING_MODES; signallingModeIndex++)
      {
        sps.getSpsRangeExtension().setRdpcmEnabledFlag(RDPCMSignallingMode(signallingModeIndex), m_rdpcmEnabledFlag[signallingModeIndex]);
      }
      sps.getSpsRangeExtension().setExtendedPrecisionProcessingFlag(m_extendedPrecisionProcessingFlag);
      sps.getSpsRangeExtension().setIntraSmoothingDisabledFlag( m_intraSmoothingDisabledFlag );
      sps.getSpsRangeExtension().setHighPrecisionOffsetsEnabledFlag(m_highPrecisionOffsetsEnabledFlag);
      sps.getSpsRangeExtension().setPersistentRiceAdaptationEnabledFlag(m_persistentRiceAdaptationEnabledFlag);
      sps.getSpsRangeExtension().setCabacBypassAlignmentEnabledFlag(m_cabacBypassAlignmentEnabledFlag);
    }
    
    #if U0132_TARGET_BITS_SATURATION
    // calculate scale value of bitrate and initial delay
    int calcScale(int x)
    {
      if (x==0)
      {
        return 0;
      }
      uint32_t iMask = 0xffffffff;
      int ScaleValue = 32;
    
      while ((x&iMask) != 0)
      {
        ScaleValue--;
        iMask = (iMask >> 1);
      }
    
      return ScaleValue;
    }
    #endif
    void EncLib::xInitHrdParameters(SPS &sps)
    {
      bool useSubCpbParams = (getSliceMode() > 0) || (getSliceSegmentMode() > 0);
      int  bitRate         = getTargetBitrate();
      bool isRandomAccess  = getIntraPeriod() > 0;
    # if U0132_TARGET_BITS_SATURATION
      int cpbSize          = getCpbSize();
      CHECK(!(cpbSize!=0), "Unspecified error");  // CPB size may not be equal to zero. ToDo: have a better default and check for level constraints
      if( !getVuiParametersPresentFlag() && !getCpbSaturationEnabled() )
    #else
      if( !getVuiParametersPresentFlag() )
    #endif
      {
        return;
      }
    
      VUI *vui = sps.getVuiParameters();
      HRD *hrd = vui->getHrdParameters();
    
      TimingInfo *timingInfo = vui->getTimingInfo();
      timingInfo->setTimingInfoPresentFlag( true );
      switch( getFrameRate() )
      {
      case 24:
        timingInfo->setNumUnitsInTick( 1125000 );    timingInfo->setTimeScale    ( 27000000 );
        break;