source: 3DVCSoftware/branches/HTM-3.0-Qualcomm/source/App/TAppEncoder/TAppEncTop.h @ 69

Last change on this file since 69 was 56, checked in by hschwarz, 13 years ago

updated trunk (move to HM6.1)

  • Property svn:eol-style set to native
File size: 6.0 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  TComSPSAccess               m_cSPSAccess;
83  TComAUPicAccess             m_cAUPicAccess;
84#endif
85
86#if HHI_VSO
87  TRenTop                     m_cRendererTop; 
88  TRenModel                   m_cRendererModel;   
89#endif
90
91#if HHI_INTERVIEW_SKIP
92  TRenTop  m_cUsedPelsRenderer;                               ///< renderer for used pels map
93#endif
94protected:
95  // initialization
96  Void  xCreateLib        ();                               ///< create files & encoder class
97  Void  xInitLibCfg       ();                               ///< initialize internal variables
98  Void  xInitLib          ();                               ///< initialize encoder class
99  Void  xDestroyLib       ();                               ///< destroy encoder class
100 
101  /// obtain required buffers
102  Void xGetBuffer(TComPicYuv*& rpcPicYuvRec, Int iViewIdx, Bool isDepth);
103 
104  /// delete allocated buffers
105  Void  xDeleteBuffer     ();
106 
107  // file I/O
108  Void xWriteOutput(std::ostream& bitstreamFile, Int iNumEncoded, std::list<AccessUnit>& accessUnits, Int iViewIdx, Bool isDepth); ///< write bitstream to file
109  void rateStatsAccum(const AccessUnit& au, const std::vector<unsigned>& stats);
110  // void printRateSummary();
111 
112  TComPic* xGetPicFromView( Int viewId, Int iPoc, Bool isDepth );
113  TComPicYuv* xGetPicYuvFromView( Int iViewIdx, Int iPoc, Bool bDepth, Bool bRecon );
114 
115public:
116  TAppEncTop();
117  virtual ~TAppEncTop();
118 
119  Void        encode      ();                               ///< main encoding function
120  TEncTop*    getTEncTop( Int viewId, Bool isDepth );   
121
122  std::vector<TComPic*> getInterViewRefPics( Int viewId, Int poc, Bool isDepth, TComSPS* sps );
123  TComPic*              getPicFromView     ( Int viewId, Int poc, Bool isDepth ) { return xGetPicFromView( viewId, poc, isDepth ); }
124  TComPicYuv*           getPicYuvFromView  ( Int iViewIdx, Int iPoc, bool bDepth, Bool bRecon ) { return xGetPicYuvFromView( iViewIdx, iPoc, bDepth, bRecon ); }
125
126#if HHI_INTERVIEW_SKIP
127  Void                  getUsedPelsMap   ( Int iViewIdx, Int iPoc, TComPicYuv* pcPicYuvUsedPelsMap );
128#endif
129#if HHI_VSO
130  Void                  setupRenModel    ( Int iPoc, Int iEncViewIdx, Int iEncContent );
131#endif
132 
133#if DEPTH_MAP_GENERATION
134  TComSPSAccess*    getSPSAccess  () { return &m_cSPSAccess;   }
135  TComAUPicAccess*  getAUPicAccess() { return &m_cAUPicAccess; }
136#endif
137
138#if HHI_VSO
139  TRenModel* getRenModel    () { return  &m_cRendererModel ; }; 
140#endif
141
142#if HHI_VSO
143private:
144  Void  xStoreVSORefPicsInBuffer();                                                   ///< read in External Ref pic from file and store in buffer
145#endif
146
147};// END CLASS DEFINITION TAppEncTop
148
149//! \}
150
151#endif // __TAPPENCTOP__
152
Note: See TracBrowser for help on using the repository browser.