Ignore:
Timestamp:
7 Sep 2015, 18:40:35 (10 years ago)
Author:
tech
Message:

Removed 3D-HEVC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-15.1-MV-draft-4/source/App/TAppDecoder/TAppDecTop.cpp

    r1321 r1325  
    9393  m_cvsStartFound                   = false;
    9494#endif
    95 #if NH_3D
    96     m_pScaleOffsetFile              = 0;
    97 #endif
    9895}
    9996
     
    139136    m_pchReconFile = NULL;
    140137  }
    141 #if NH_3D
    142   if (m_pchScaleOffsetFile)
    143   {
    144     free (m_pchScaleOffsetFile);
    145     m_pchScaleOffsetFile = NULL;
    146   }
    147 #endif
    148138}
    149139
     
    401391  // initialize global variables
    402392  initROM();
    403 #if NH_3D_DMM
    404   initWedgeLists();
    405 #endif
    406393#else
    407394  // create decoder class
     
    444431  m_cTDecTop.destroy();
    445432#endif
    446 #if NH_3D
    447   m_cCamParsCollector.uninit();
    448   if( m_pScaleOffsetFile )
    449   {
    450     ::fclose( m_pScaleOffsetFile );
    451   }
    452 #endif
    453433}
    454434
     
    456436{
    457437
    458 #if NH_3D
    459   m_cCamParsCollector.setCodeScaleOffsetFile( m_pScaleOffsetFile );
    460 #endif
    461438#if NH_MV
    462439  m_dpb.setPrintPicOutput(m_printPicOutput);
     
    10351012    xFinalizeAU ( );
    10361013
    1037 #if NH_3D
    1038   if( m_cCamParsCollector.isInitialized() )
    1039   {
    1040     m_cCamParsCollector.setSlice( 0 );
    1041   }
    1042 #endif
    10431014   xFlushOutput();
    10441015   m_dpb.emptyAllSubDpbs();
     
    10681039    m_newVpsActivatedbyCurAu  = true; //TBD
    10691040    m_newVpsActivatedbyCurPic = true;
    1070 #if NH_3D
    1071     m_dpb.setVPS( m_vps );
    1072 #endif
    10731041  }
    10741042
     
    11921160Void TAppDecTop::xFinalizeAU()
    11931161{
    1194 #if NH_3D
    1195   if ( !m_curAu.empty())
    1196   {
    1197     for (TComList<TComPic*>::iterator it = m_curAu.begin(); it != m_curAu.end(); it++)
    1198     {
    1199       TComPic* pic = (*it);
    1200       if ( !pic->getHasGeneratedRefPics() )
    1201       {
    1202         pic->compressMotion(1);
    1203       }
    1204     }
    1205   }
    1206 #endif
    12071162}
    12081163
     
    26642619      m_tDecTop[ decIdx ]->setDecodedSEIMessageOutputStream(&os);
    26652620    }
    2666 #if NH_3D
    2667    m_tDecTop[ decIdx ]->setCamParsCollector( &m_cCamParsCollector );
    2668 #endif
    26692621
    26702622    // append pic list of new decoder to PicLists
     
    28882840  }
    28892841
    2890 #if NH_3D
    2891   if( m_pchScaleOffsetFile )
    2892   {
    2893     m_pScaleOffsetFile = ::fopen( m_pchScaleOffsetFile, "wt" );
    2894     if (!m_pScaleOffsetFile)
    2895     {
    2896       fprintf(stderr, "\nUnable to open file `%s' for writing decoded Camera Parameters messages\n", m_pchScaleOffsetFile);
    2897       exit(EXIT_FAILURE);
    2898     }
    2899   }
    2900 #endif
    29012842}
    29022843
     
    29872928      conf.getWindowTopOffset()    + defDisp.getWindowTopOffset(),
    29882929      conf.getWindowBottomOffset() + defDisp.getWindowBottomOffset(),
    2989 #if NH_3D
    2990       m_depth420OutputFlag && curPic->getIsDepth() ? CHROMA_420 : NUM_CHROMA_FORMAT
    2991 #else
    29922930      NUM_CHROMA_FORMAT
    2993 #endif
    29942931      , m_bClipOutputVideoToRec709Range);
    29952932  }
Note: See TracChangeset for help on using the changeset viewer.