source: 3DVCSoftware/branches/HTM-DEV-2.0-dev2-MediaTek/source/Lib/TLibDecoder/TDecGop.cpp @ 584

Last change on this file since 584 was 564, checked in by mediatek-htm, 11 years ago

Integration of JCT3V-E0170 for motion data storage reduction.
The MACRO is "MTK_SONY_PROGRESSIVE_MV_COMPRESSION_E0170".

By Yi-Wen Chen (yiwen.chen@…)

  • Property svn:eol-style set to native
File size: 12.4 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-2013, 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     TDecGop.cpp
35    \brief    GOP decoder class
36*/
37
38#include "TDecGop.h"
39#include "TDecCAVLC.h"
40#include "TDecSbac.h"
41#include "TDecBinCoder.h"
42#include "TDecBinCoderCABAC.h"
43#include "libmd5/MD5.h"
44#include "TLibCommon/SEI.h"
45
46#include <time.h>
47
48extern Bool g_md5_mismatch; ///< top level flag to signal when there is a decode problem
49
50//! \ingroup TLibDecoder
51//! \{
52static void calcAndPrintHashStatus(TComPicYuv& pic, const SEIDecodedPictureHash* pictureHashSEI);
53// ====================================================================================================================
54// Constructor / destructor / initialization / destroy
55// ====================================================================================================================
56
57TDecGop::TDecGop()
58{
59  m_dDecTime = 0;
60  m_pcSbacDecoders = NULL;
61  m_pcBinCABACs = NULL;
62}
63
64TDecGop::~TDecGop()
65{
66 
67}
68
69Void TDecGop::create()
70{
71 
72}
73
74
75Void TDecGop::destroy()
76{
77}
78
79Void TDecGop::init( TDecEntropy*            pcEntropyDecoder, 
80                   TDecSbac*               pcSbacDecoder, 
81                   TDecBinCABAC*           pcBinCABAC,
82                   TDecCavlc*              pcCavlcDecoder, 
83                   TDecSlice*              pcSliceDecoder, 
84                   TComLoopFilter*         pcLoopFilter,
85                   TComSampleAdaptiveOffset* pcSAO
86                   )
87{
88  m_pcEntropyDecoder      = pcEntropyDecoder;
89  m_pcSbacDecoder         = pcSbacDecoder;
90  m_pcBinCABAC            = pcBinCABAC;
91  m_pcCavlcDecoder        = pcCavlcDecoder;
92  m_pcSliceDecoder        = pcSliceDecoder;
93  m_pcLoopFilter          = pcLoopFilter;
94  m_pcSAO  = pcSAO;
95}
96
97
98// ====================================================================================================================
99// Private member functions
100// ====================================================================================================================
101// ====================================================================================================================
102// Public member functions
103// ====================================================================================================================
104
105Void TDecGop::decompressSlice(TComInputBitstream* pcBitstream, TComPic*& rpcPic)
106{
107  TComSlice*  pcSlice = rpcPic->getSlice(rpcPic->getCurrSliceIdx());
108  // Table of extracted substreams.
109  // These must be deallocated AND their internal fifos, too.
110  TComInputBitstream **ppcSubstreams = NULL;
111
112  //-- For time output for each slice
113  long iBeforeTime = clock();
114 
115  UInt uiStartCUAddr   = pcSlice->getSliceSegmentCurStartCUAddr();
116
117  UInt uiSliceStartCuAddr = pcSlice->getSliceCurStartCUAddr();
118  if(uiSliceStartCuAddr == uiStartCUAddr)
119  {
120    m_sliceStartCUAddress.push_back(uiSliceStartCuAddr);
121  }
122
123  m_pcSbacDecoder->init( (TDecBinIf*)m_pcBinCABAC );
124  m_pcEntropyDecoder->setEntropyDecoder (m_pcSbacDecoder);
125
126  UInt uiNumSubstreams = pcSlice->getPPS()->getEntropyCodingSyncEnabledFlag() ? pcSlice->getNumEntryPointOffsets()+1 : pcSlice->getPPS()->getNumSubstreams();
127
128  // init each couple {EntropyDecoder, Substream}
129  UInt *puiSubstreamSizes = pcSlice->getSubstreamSizes();
130  ppcSubstreams    = new TComInputBitstream*[uiNumSubstreams];
131  m_pcSbacDecoders = new TDecSbac[uiNumSubstreams];
132  m_pcBinCABACs    = new TDecBinCABAC[uiNumSubstreams];
133  for ( UInt ui = 0 ; ui < uiNumSubstreams ; ui++ )
134  {
135    m_pcSbacDecoders[ui].init(&m_pcBinCABACs[ui]);
136    ppcSubstreams[ui] = pcBitstream->extractSubstream(ui+1 < uiNumSubstreams ? puiSubstreamSizes[ui] : pcBitstream->getNumBitsLeft());
137  }
138
139  for ( UInt ui = 0 ; ui+1 < uiNumSubstreams; ui++ )
140  {
141    m_pcEntropyDecoder->setEntropyDecoder ( &m_pcSbacDecoders[uiNumSubstreams - 1 - ui] );
142    m_pcEntropyDecoder->setBitstream      (  ppcSubstreams   [uiNumSubstreams - 1 - ui] );
143    m_pcEntropyDecoder->resetEntropy      (pcSlice);
144  }
145
146  m_pcEntropyDecoder->setEntropyDecoder ( m_pcSbacDecoder  );
147  m_pcEntropyDecoder->setBitstream      ( ppcSubstreams[0] );
148  m_pcEntropyDecoder->resetEntropy      (pcSlice);
149
150  if(uiSliceStartCuAddr == uiStartCUAddr)
151  {
152    m_LFCrossSliceBoundaryFlag.push_back( pcSlice->getLFCrossSliceBoundaryFlag());
153  }
154#if H_3D_NBDV
155  if(pcSlice->getViewIndex() && !pcSlice->getIsDepth()) //Notes from QC: this condition shall be changed once the configuration is completed, e.g. in pcSlice->getSPS()->getMultiviewMvPredMode() || ARP in prev. HTM. Remove this comment once it is done.
156  {
157    Int iColPoc = pcSlice->getRefPOC(RefPicList(1-pcSlice->getColFromL0Flag()), pcSlice->getColRefIdx());
158    rpcPic->setNumDdvCandPics(rpcPic->getDisCandRefPictures(iColPoc));
159  }
160#endif
161#if H_3D
162  pcSlice->setDepthToDisparityLUTs(); 
163#endif
164  m_pcSbacDecoders[0].load(m_pcSbacDecoder);
165  m_pcSliceDecoder->decompressSlice( ppcSubstreams, rpcPic, m_pcSbacDecoder, m_pcSbacDecoders);
166  m_pcEntropyDecoder->setBitstream(  ppcSubstreams[uiNumSubstreams-1] );
167  // deallocate all created substreams, including internal buffers.
168  for (UInt ui = 0; ui < uiNumSubstreams; ui++)
169  {
170    ppcSubstreams[ui]->deleteFifo();
171    delete ppcSubstreams[ui];
172  }
173  delete[] ppcSubstreams;
174  delete[] m_pcSbacDecoders; m_pcSbacDecoders = NULL;
175  delete[] m_pcBinCABACs; m_pcBinCABACs = NULL;
176
177  m_dDecTime += (Double)(clock()-iBeforeTime) / CLOCKS_PER_SEC;
178}
179
180Void TDecGop::filterPicture(TComPic*& rpcPic)
181{
182  TComSlice*  pcSlice = rpcPic->getSlice(rpcPic->getCurrSliceIdx());
183
184  //-- For time output for each slice
185  long iBeforeTime = clock();
186
187  // deblocking filter
188  Bool bLFCrossTileBoundary = pcSlice->getPPS()->getLoopFilterAcrossTilesEnabledFlag();
189  m_pcLoopFilter->setCfg(bLFCrossTileBoundary);
190  m_pcLoopFilter->loopFilterPic( rpcPic );
191
192  if(pcSlice->getSPS()->getUseSAO())
193  {
194    m_sliceStartCUAddress.push_back(rpcPic->getNumCUsInFrame()* rpcPic->getNumPartInCU());
195    rpcPic->createNonDBFilterInfo(m_sliceStartCUAddress, 0, &m_LFCrossSliceBoundaryFlag, rpcPic->getPicSym()->getNumTiles(), bLFCrossTileBoundary);
196  }
197
198  if( pcSlice->getSPS()->getUseSAO() )
199  {
200    {
201      SAOParam *saoParam = rpcPic->getPicSym()->getSaoParam();
202      saoParam->bSaoFlag[0] = pcSlice->getSaoEnabledFlag();
203      saoParam->bSaoFlag[1] = pcSlice->getSaoEnabledFlagChroma();
204      m_pcSAO->setSaoLcuBasedOptimization(1);
205      m_pcSAO->createPicSaoInfo(rpcPic);
206      m_pcSAO->SAOProcess(saoParam);
207      m_pcSAO->PCMLFDisableProcess(rpcPic);
208      m_pcSAO->destroyPicSaoInfo();
209    }
210  }
211
212  if(pcSlice->getSPS()->getUseSAO())
213  {
214    rpcPic->destroyNonDBFilterInfo();
215  }
216#if MTK_SONY_PROGRESSIVE_MV_COMPRESSION_E0170
217  rpcPic->compressMotion(2); 
218#endif
219#if !H_3D
220  rpcPic->compressMotion(); 
221#endif
222  Char c = (pcSlice->isIntra() ? 'I' : pcSlice->isInterP() ? 'P' : 'B');
223  if (!pcSlice->isReferenced()) c += 32;
224
225  //-- For time output for each slice
226#if H_MV
227  printf("\nLayer %2d   POC %4d TId: %1d ( %c-SLICE, QP%3d ) ", pcSlice->getLayerId(),
228                                                              pcSlice->getPOC(),
229                                                              pcSlice->getTLayer(),
230                                                              c,
231                                                              pcSlice->getSliceQp() );
232#else
233  printf("\nPOC %4d TId: %1d ( %c-SLICE, QP%3d ) ", pcSlice->getPOC(),
234                                                    pcSlice->getTLayer(),
235                                                    c,
236                                                    pcSlice->getSliceQp() );
237#endif
238
239  m_dDecTime += (Double)(clock()-iBeforeTime) / CLOCKS_PER_SEC;
240  printf ("[DT %6.3f] ", m_dDecTime );
241  m_dDecTime  = 0;
242
243  for (Int iRefList = 0; iRefList < 2; iRefList++)
244  {
245    printf ("[L%d ", iRefList);
246    for (Int iRefIndex = 0; iRefIndex < pcSlice->getNumRefIdx(RefPicList(iRefList)); iRefIndex++)
247    {
248#if H_MV
249      if( pcSlice->getLayerId() != pcSlice->getRefLayerId( RefPicList(iRefList), iRefIndex ) )
250      {
251        printf( "V%d ", pcSlice->getRefLayerId( RefPicList(iRefList), iRefIndex ) );
252      }
253      else
254      {
255#endif
256      printf ("%d ", pcSlice->getRefPOC(RefPicList(iRefList), iRefIndex));
257#if H_MV
258      }
259#endif
260    }
261    printf ("] ");
262  }
263  if (m_decodedPictureHashSEIEnabled)
264  {
265    SEIMessages pictureHashes = getSeisByType(rpcPic->getSEIs(), SEI::DECODED_PICTURE_HASH );
266    const SEIDecodedPictureHash *hash = ( pictureHashes.size() > 0 ) ? (SEIDecodedPictureHash*) *(pictureHashes.begin()) : NULL;
267    if (pictureHashes.size() > 1)
268    {
269      printf ("Warning: Got multiple decoded picture hash SEI messages. Using first.");
270    }
271    calcAndPrintHashStatus(*rpcPic->getPicYuvRec(), hash);
272  }
273
274  rpcPic->setOutputMark(true);
275  rpcPic->setReconMark(true);
276  m_sliceStartCUAddress.clear();
277  m_LFCrossSliceBoundaryFlag.clear();
278}
279
280/**
281 * Calculate and print hash for pic, compare to picture_digest SEI if
282 * present in seis.  seis may be NULL.  Hash is printed to stdout, in
283 * a manner suitable for the status line. Theformat is:
284 *  [Hash_type:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx,(yyy)]
285 * Where, x..x is the hash
286 *        yyy has the following meanings:
287 *            OK          - calculated hash matches the SEI message
288 *            ***ERROR*** - calculated hash does not match the SEI message
289 *            unk         - no SEI message was available for comparison
290 */
291static void calcAndPrintHashStatus(TComPicYuv& pic, const SEIDecodedPictureHash* pictureHashSEI)
292{
293  /* calculate MD5sum for entire reconstructed picture */
294  UChar recon_digest[3][16];
295  Int numChar=0;
296  const Char* hashType = "\0";
297
298  if (pictureHashSEI)
299  {
300    switch (pictureHashSEI->method)
301    {
302    case SEIDecodedPictureHash::MD5:
303      {
304        hashType = "MD5";
305        calcMD5(pic, recon_digest);
306        numChar = 16;
307        break;
308      }
309    case SEIDecodedPictureHash::CRC:
310      {
311        hashType = "CRC";
312        calcCRC(pic, recon_digest);
313        numChar = 2;
314        break;
315      }
316    case SEIDecodedPictureHash::CHECKSUM:
317      {
318        hashType = "Checksum";
319        calcChecksum(pic, recon_digest);
320        numChar = 4;
321        break;
322      }
323    default:
324      {
325        assert (!"unknown hash type");
326      }
327    }
328  }
329
330  /* compare digest against received version */
331  const Char* ok = "(unk)";
332  Bool mismatch = false;
333
334  if (pictureHashSEI)
335  {
336    ok = "(OK)";
337    for(Int yuvIdx = 0; yuvIdx < 3; yuvIdx++)
338    {
339      for (UInt i = 0; i < numChar; i++)
340      {
341        if (recon_digest[yuvIdx][i] != pictureHashSEI->digest[yuvIdx][i])
342        {
343          ok = "(***ERROR***)";
344          mismatch = true;
345        }
346      }
347    }
348  }
349
350  printf("[%s:%s,%s] ", hashType, digestToString(recon_digest, numChar), ok);
351
352  if (mismatch)
353  {
354    g_md5_mismatch = true;
355    printf("[rx%s:%s] ", hashType, digestToString(pictureHashSEI->digest, numChar));
356  }
357}
358//! \}
Note: See TracBrowser for help on using the repository browser.