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 |
---|
61 | class TAppEncTop : public TAppEncCfg |
---|
62 | { |
---|
63 | private: |
---|
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 |
---|
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 | protected: |
---|
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 |
---|
109 | Void xGetBuffer(TComPicYuv*& rpcPicYuvRec, Int iViewIdx, Bool isDepth); |
---|
110 | |
---|
111 | /// delete allocated buffers |
---|
112 | Void xDeleteBuffer (); |
---|
113 | |
---|
114 | // file I/O |
---|
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 ); |
---|
120 | TComPicYuv* xGetPicYuvFromView( Int iViewIdx, Int iPoc, Bool bDepth, Bool bRecon ); |
---|
121 | |
---|
122 | public: |
---|
123 | TAppEncTop(); |
---|
124 | virtual ~TAppEncTop(); |
---|
125 | |
---|
126 | |
---|
127 | Void encode (); ///< main encoding function |
---|
128 | TEncTop* getTEncTop( Int viewId, Bool isDepth ); |
---|
129 | |
---|
130 | std::vector<TComPic*> getInterViewRefPics( Int viewId, Int poc, Bool isDepth, TComSPS* sps ); |
---|
131 | TComPic* getPicFromView ( Int viewId, Int poc, Bool isDepth ) { return xGetPicFromView( viewId, poc, isDepth ); } |
---|
132 | TComPicYuv* getPicYuvFromView ( Int iViewIdx, Int iPoc, bool bDepth, Bool bRecon ) { return xGetPicYuvFromView( iViewIdx, iPoc, bDepth, bRecon ); } |
---|
133 | |
---|
134 | #if HHI_INTERVIEW_SKIP |
---|
135 | Void getUsedPelsMap ( Int iViewIdx, Int iPoc, TComPicYuv* pcPicYuvUsedPelsMap ); |
---|
136 | #endif |
---|
137 | #if HHI_VSO |
---|
138 | #if HHI_VSO_SPEEDUP_A0033 |
---|
139 | Void setupRenModel ( Int iPoc, Int iEncViewIdx, Int iEncContent, Int iHorOffset ); |
---|
140 | #else |
---|
141 | Void setupRenModel ( Int iPoc, Int iEncViewIdx, Int iEncContent ); |
---|
142 | #endif |
---|
143 | #endif |
---|
144 | |
---|
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 |
---|
160 | private: |
---|
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 | };// END CLASS DEFINITION TAppEncTop |
---|
169 | |
---|
170 | //! \} |
---|
171 | |
---|
172 | #endif // __TAPPENCTOP__ |
---|
173 | |
---|