source: 3DVCSoftware/trunk/source/App/TAppEncoder/TAppEncTop.h @ 90

Last change on this file since 90 was 77, checked in by tech, 13 years ago

Merged with branch/HTM-3.0Samsung REV74 including:

  • restricted residual prediction m24766
  • Inter-view residual prediction m24938
  • VPS concept m24714,m24878, m24945,m24896, m2491
  • reference list modification, restriction on IDR m24876, m24874
  • depth based motion parameter prediction m24829

Fixed bugs:

  • interview prediction
  • VSO

Added:

  • xcode project
  • Property svn:eol-style set to native
File size: 6.3 KB
RevLine 
[5]1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
[56]4 * granted under this license. 
[5]5 *
[56]6 * Copyright (c) 2010-2012, ITU/ISO/IEC
[5]7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
[56]17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
[5]18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
[2]33
34/** \file     TAppEncTop.h
35    \brief    Encoder application class (header)
36*/
37
38#ifndef __TAPPENCTOP__
39#define __TAPPENCTOP__
40
[56]41#include <list>
42#include <ostream>
43
44#include "TLibEncoder/TEncTop.h"
45#include "TLibVideoIO/TVideoIOYuv.h"
46#include "TLibCommon/AccessUnit.h"
[2]47#include "TAppEncCfg.h"
[56]48#include "TLibCommon/TComDepthMapGenerator.h"
49#if HHI_VSO || HHI_INTERVIEW_SKIP
[2]50#include "../../Lib/TLibRenderer/TRenTop.h"
[56]51#endif
[2]52
[56]53//! \ingroup TAppEncoder
54//! \{
55
[2]56// ====================================================================================================================
57// Class definition
58// ====================================================================================================================
59
60/// encoder application class
61class TAppEncTop : public TAppEncCfg
62{
63private:
64  // class interface
[56]65  std::vector<TEncTop*>                           m_acTEncTopList ;
66  std::vector<TEncTop*>                           m_acTEncDepthTopList ;
67  std::vector<TVideoIOYuv*>             m_acTVideoIOYuvInputFileList;  ///< input YUV file
68  std::vector<TVideoIOYuv*>  m_acTVideoIOYuvDepthInputFileList;
69  std::vector<TVideoIOYuv*>             m_acTVideoIOYuvReconFileList;  ///< output reconstruction file
70  std::vector<TVideoIOYuv*>  m_acTVideoIOYuvDepthReconFileList;
[2]71
[56]72  std::vector< TComList<TComPicYuv*>* >  m_picYuvRec;       ///< list of reconstruction YUV files
73  std::vector< TComList<TComPicYuv*>* >  m_picYuvDepthRec;         
[2]74
[56]75  std::vector<Int>              m_frameRcvd;                  ///< number of received frames
76  std::vector<Int>              m_depthFrameRcvd;   
[2]77
[56]78  unsigned                   m_essentialBytes;
79  unsigned                   m_totalBytes;
[2]80
[5]81#if DEPTH_MAP_GENERATION
[77]82#if VIDYO_VPS_INTEGRATION
83  TComVPSAccess               m_cVPSAccess;
84#endif
[2]85  TComSPSAccess               m_cSPSAccess;
86  TComAUPicAccess             m_cAUPicAccess;
[5]87#endif
[56]88
[77]89#if VIDYO_VPS_INTEGRATION
90  TComVPS                     m_cVPS;
91#endif
92 
[5]93#if HHI_VSO
[2]94  TRenTop                     m_cRendererTop; 
[5]95  TRenModel                   m_cRendererModel;   
[2]96#endif
97
[56]98#if HHI_INTERVIEW_SKIP
99  TRenTop  m_cUsedPelsRenderer;                               ///< renderer for used pels map
100#endif
[2]101protected:
102  // initialization
103  Void  xCreateLib        ();                               ///< create files & encoder class
104  Void  xInitLibCfg       ();                               ///< initialize internal variables
105  Void  xInitLib          ();                               ///< initialize encoder class
106  Void  xDestroyLib       ();                               ///< destroy encoder class
107 
108  /// obtain required buffers
[56]109  Void xGetBuffer(TComPicYuv*& rpcPicYuvRec, Int iViewIdx, Bool isDepth);
[2]110 
111  /// delete allocated buffers
112  Void  xDeleteBuffer     ();
113 
114  // file I/O
[56]115  Void xWriteOutput(std::ostream& bitstreamFile, Int iNumEncoded, std::list<AccessUnit>& accessUnits, Int iViewIdx, Bool isDepth); ///< write bitstream to file
116  void rateStatsAccum(const AccessUnit& au, const std::vector<unsigned>& stats);
117  // void printRateSummary();
118 
119  TComPic* xGetPicFromView( Int viewId, Int iPoc, Bool isDepth );
[2]120  TComPicYuv* xGetPicYuvFromView( Int iViewIdx, Int iPoc, Bool bDepth, Bool bRecon );
121 
122public:
123  TAppEncTop();
124  virtual ~TAppEncTop();
125 
126  Void        encode      ();                               ///< main encoding function
[56]127  TEncTop*    getTEncTop( Int viewId, Bool isDepth );   
128
129  std::vector<TComPic*> getInterViewRefPics( Int viewId, Int poc, Bool isDepth, TComSPS* sps );
130  TComPic*              getPicFromView     ( Int viewId, Int poc, Bool isDepth ) { return xGetPicFromView( viewId, poc, isDepth ); }
131  TComPicYuv*           getPicYuvFromView  ( Int iViewIdx, Int iPoc, bool bDepth, Bool bRecon ) { return xGetPicYuvFromView( iViewIdx, iPoc, bDepth, bRecon ); }
132
133#if HHI_INTERVIEW_SKIP
134  Void                  getUsedPelsMap   ( Int iViewIdx, Int iPoc, TComPicYuv* pcPicYuvUsedPelsMap );
135#endif
[5]136#if HHI_VSO
[2]137  Void                  setupRenModel    ( Int iPoc, Int iEncViewIdx, Int iEncContent );
[5]138#endif
[56]139 
[77]140#if VIDYO_VPS_INTEGRATION
141  TComVPS*          getVPS()  { return &m_cVPS; }
142  TComVPSAccess*    getVPSAccess  () { return &m_cVPSAccess;   }
143#endif
144 
[5]145#if DEPTH_MAP_GENERATION
[2]146  TComSPSAccess*    getSPSAccess  () { return &m_cSPSAccess;   }
147  TComAUPicAccess*  getAUPicAccess() { return &m_cAUPicAccess; }
[5]148#endif
[2]149
[5]150#if HHI_VSO
[56]151  TRenModel* getRenModel    () { return  &m_cRendererModel ; }; 
152#endif
153
154#if HHI_VSO
[2]155private:
156  Void  xStoreVSORefPicsInBuffer();                                                   ///< read in External Ref pic from file and store in buffer
[5]157#endif
[56]158
[2]159};// END CLASS DEFINITION TAppEncTop
160
[56]161//! \}
162
[2]163#endif // __TAPPENCTOP__
164
Note: See TracBrowser for help on using the repository browser.