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

Last change on this file since 296 was 296, checked in by tech, 11 years ago

Reintegrated branch 5.1-dev0 rev. 295.

  • Property svn:eol-style set to native
File size: 6.6 KB
Line 
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
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2012, ITU/ISO/IEC
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.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
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 */
33
34/** \file     TAppEncTop.h
35    \brief    Encoder application class (header)
36*/
37
38#ifndef __TAPPENCTOP__
39#define __TAPPENCTOP__
40
41#include <list>
42#include <ostream>
43
44#include "TLibEncoder/TEncTop.h"
45#include "TLibVideoIO/TVideoIOYuv.h"
46#include "TLibCommon/AccessUnit.h"
47#include "TAppEncCfg.h"
48#include "TLibCommon/TComDepthMapGenerator.h"
49#if HHI_VSO || HHI_INTERVIEW_SKIP
50#include "../../Lib/TLibRenderer/TRenTop.h"
51#endif
52
53//! \ingroup TAppEncoder
54//! \{
55
56// ====================================================================================================================
57// Class definition
58// ====================================================================================================================
59
60/// encoder application class
61class TAppEncTop : public TAppEncCfg
62{
63private:
64  // class interface
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;
71
72  std::vector< TComList<TComPicYuv*>* >  m_picYuvRec;       ///< list of reconstruction YUV files
73  std::vector< TComList<TComPicYuv*>* >  m_picYuvDepthRec;         
74
75  std::vector<Int>           m_frameRcvd;                  ///< number of received frames
76  std::vector<Int>           m_depthFrameRcvd;   
77
78  unsigned                   m_essentialBytes;
79  unsigned                   m_totalBytes;
80
81#if DEPTH_MAP_GENERATION
82#if VIDYO_VPS_INTEGRATION
83  TComVPSAccess               m_cVPSAccess;
84#endif
85  TComSPSAccess               m_cSPSAccess;
86  TComAUPicAccess             m_cAUPicAccess;
87#endif
88
89#if VIDYO_VPS_INTEGRATION|QC_MVHEVC_B0046
90  TComVPS                     m_cVPS;
91#endif
92 
93#if HHI_VSO
94  TRenTop                     m_cRendererTop; 
95  TRenModel                   m_cRendererModel;   
96#endif
97
98#if HHI_INTERVIEW_SKIP
99  TRenTop  m_cUsedPelsRenderer;                               ///< renderer for used pels map
100#endif
101
102protected:
103  // initialization
104  Void  xCreateLib        ();                               ///< create files & encoder class
105  Void  xInitLibCfg       ();                               ///< initialize internal variables
106  Void  xInitLib          ();                               ///< initialize encoder class
107  Void  xDestroyLib       ();                               ///< destroy encoder class
108 
109  /// obtain required buffers
110  Void xGetBuffer(TComPicYuv*& rpcPicYuvRec, Int iViewIdx, Bool isDepth);
111 
112  /// delete allocated buffers
113  Void  xDeleteBuffer     ();
114 
115  // file I/O
116  Void xWriteOutput(std::ostream& bitstreamFile, Int iNumEncoded, std::list<AccessUnit>& accessUnits, Int iViewIdx, Bool isDepth); ///< write bitstream to file
117  void rateStatsAccum(const AccessUnit& au, const std::vector<unsigned>& stats);
118  // void printRateSummary();
119 
120  TComPic* xGetPicFromView( Int viewId, Int iPoc, Bool isDepth );
121  TComPicYuv* xGetPicYuvFromView( Int iViewIdx, Int iPoc, Bool bDepth, Bool bRecon );
122 
123public:
124  TAppEncTop();
125  virtual ~TAppEncTop();
126
127
128  Void        encode      ();                               ///< main encoding function
129  TEncTop*    getTEncTop( Int viewId, Bool isDepth );   
130
131  std::vector<TComPic*> getInterViewRefPics( Int viewId, Int poc, Bool isDepth, TComSPS* sps );
132  TComPic*              getPicFromView     ( Int viewId, Int poc, Bool isDepth ) { return xGetPicFromView( viewId, poc, isDepth ); }
133  TComPicYuv*           getPicYuvFromView  ( Int iViewIdx, Int iPoc, bool bDepth, Bool bRecon ) { return xGetPicYuvFromView( iViewIdx, iPoc, bDepth, bRecon ); }
134
135#if HHI_INTERVIEW_SKIP
136  Void                  getUsedPelsMap   ( Int iViewIdx, Int iPoc, TComPicYuv* pcPicYuvUsedPelsMap );
137#endif
138#if HHI_VSO
139  Void                  setupRenModel    ( Int iPoc, Int iEncViewIdx, Int iEncContent, Int iHorOffset );
140#endif
141 
142#if QC_MVHEVC_B0046
143  TComVPS*          getVPS()  { return &m_cVPS; }
144#endif
145#if VIDYO_VPS_INTEGRATION
146  TComVPS*          getVPS()  { return &m_cVPS; }
147  TComVPSAccess*    getVPSAccess  () { return &m_cVPSAccess;   }
148#endif
149 
150#if DEPTH_MAP_GENERATION
151  TComSPSAccess*    getSPSAccess  () { return &m_cSPSAccess;   }
152  TComAUPicAccess*  getAUPicAccess() { return &m_cAUPicAccess; }
153#endif
154
155#if HHI_VSO
156  TRenModel* getRenModel    () { return  &m_cRendererModel ; }; 
157#endif
158
159#if HHI_VSO
160private:
161  Void  xStoreVSORefPicsInBuffer();                                                   ///< read in External Ref pic from file and store in buffer
162#endif
163 
164#if RWTH_SDC_DLT_B0036
165  Void  xAnalyzeInputBaseDepth(Int iViewIdx, UInt uiNumFrames);
166#endif
167
168#if MERL_VSP_C0152
169  Void setBWVSPLUT( Int iCodedViewIdx, Int gopId, Bool isDepth);
170#endif
171};// END CLASS DEFINITION TAppEncTop
172
173//! \}
174
175#endif // __TAPPENCTOP__
176
Note: See TracBrowser for help on using the repository browser.