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 TDecCAVLC.cpp |
---|
35 | \brief CAVLC decoder class |
---|
36 | */ |
---|
37 | |
---|
38 | #include "TDecCAVLC.h" |
---|
39 | #include "SEIread.h" |
---|
40 | #include "TDecSlice.h" |
---|
41 | |
---|
42 | //! \ingroup TLibDecoder |
---|
43 | //! \{ |
---|
44 | |
---|
45 | #if ENC_DEC_TRACE |
---|
46 | |
---|
47 | #define READ_CODE(length, code, name) xReadCodeTr ( length, code, name ) |
---|
48 | #define READ_UVLC( code, name) xReadUvlcTr ( code, name ) |
---|
49 | #define READ_SVLC( code, name) xReadSvlcTr ( code, name ) |
---|
50 | #define READ_FLAG( code, name) xReadFlagTr ( code, name ) |
---|
51 | |
---|
52 | Void xTraceSPSHeader (TComSPS *pSPS) |
---|
53 | { |
---|
54 | fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() ); |
---|
55 | } |
---|
56 | |
---|
57 | Void xTracePPSHeader (TComPPS *pPPS) |
---|
58 | { |
---|
59 | fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() ); |
---|
60 | } |
---|
61 | |
---|
62 | Void xTraceAPSHeader (TComAPS *pAPS) |
---|
63 | { |
---|
64 | fprintf( g_hTrace, "=========== Adaptation Parameter Set ===========\n"); |
---|
65 | } |
---|
66 | |
---|
67 | Void xTraceSliceHeader (TComSlice *pSlice) |
---|
68 | { |
---|
69 | fprintf( g_hTrace, "=========== Slice ===========\n"); |
---|
70 | } |
---|
71 | |
---|
72 | |
---|
73 | Void TDecCavlc::xReadCodeTr (UInt length, UInt& rValue, const Char *pSymbolName) |
---|
74 | { |
---|
75 | xReadCode (length, rValue); |
---|
76 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
77 | fprintf( g_hTrace, "%-40s u(%d) : %d\n", pSymbolName, length, rValue ); |
---|
78 | fflush ( g_hTrace ); |
---|
79 | } |
---|
80 | |
---|
81 | Void TDecCavlc::xReadUvlcTr (UInt& rValue, const Char *pSymbolName) |
---|
82 | { |
---|
83 | xReadUvlc (rValue); |
---|
84 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
85 | fprintf( g_hTrace, "%-40s u(v) : %d\n", pSymbolName, rValue ); |
---|
86 | fflush ( g_hTrace ); |
---|
87 | } |
---|
88 | |
---|
89 | Void TDecCavlc::xReadSvlcTr (Int& rValue, const Char *pSymbolName) |
---|
90 | { |
---|
91 | xReadSvlc(rValue); |
---|
92 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
93 | fprintf( g_hTrace, "%-40s s(v) : %d\n", pSymbolName, rValue ); |
---|
94 | fflush ( g_hTrace ); |
---|
95 | } |
---|
96 | |
---|
97 | Void TDecCavlc::xReadFlagTr (UInt& rValue, const Char *pSymbolName) |
---|
98 | { |
---|
99 | xReadFlag(rValue); |
---|
100 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
101 | fprintf( g_hTrace, "%-40s u(1) : %d\n", pSymbolName, rValue ); |
---|
102 | fflush ( g_hTrace ); |
---|
103 | } |
---|
104 | |
---|
105 | #else |
---|
106 | |
---|
107 | #define READ_CODE(length, code, name) xReadCode ( length, code ) |
---|
108 | #define READ_UVLC( code, name) xReadUvlc ( code ) |
---|
109 | #define READ_SVLC( code, name) xReadSvlc ( code ) |
---|
110 | #define READ_FLAG( code, name) xReadFlag ( code ) |
---|
111 | |
---|
112 | #endif |
---|
113 | |
---|
114 | |
---|
115 | |
---|
116 | // ==================================================================================================================== |
---|
117 | // Constructor / destructor / create / destroy |
---|
118 | // ==================================================================================================================== |
---|
119 | |
---|
120 | TDecCavlc::TDecCavlc() |
---|
121 | { |
---|
122 | m_iSliceGranularity = 0; |
---|
123 | |
---|
124 | m_aaiTempScale = new Int* [ MAX_VIEW_NUM ]; |
---|
125 | m_aaiTempOffset = new Int* [ MAX_VIEW_NUM ]; |
---|
126 | m_aaiTempPdmScaleNomDelta = new Int* [ MAX_VIEW_NUM ]; |
---|
127 | m_aaiTempPdmOffset = new Int* [ MAX_VIEW_NUM ]; |
---|
128 | for( UInt uiVId = 0; uiVId < MAX_VIEW_NUM; uiVId++ ) |
---|
129 | { |
---|
130 | m_aaiTempScale [ uiVId ] = new Int [ MAX_VIEW_NUM ]; |
---|
131 | m_aaiTempOffset [ uiVId ] = new Int [ MAX_VIEW_NUM ]; |
---|
132 | m_aaiTempPdmScaleNomDelta [ uiVId ] = new Int [ MAX_VIEW_NUM ]; |
---|
133 | m_aaiTempPdmOffset [ uiVId ] = new Int [ MAX_VIEW_NUM ]; |
---|
134 | } |
---|
135 | } |
---|
136 | |
---|
137 | TDecCavlc::~TDecCavlc() |
---|
138 | { |
---|
139 | for( UInt uiVId = 0; uiVId < MAX_VIEW_NUM; uiVId++ ) |
---|
140 | { |
---|
141 | delete [] m_aaiTempScale [ uiVId ]; |
---|
142 | delete [] m_aaiTempOffset [ uiVId ]; |
---|
143 | delete [] m_aaiTempPdmScaleNomDelta [ uiVId ]; |
---|
144 | delete [] m_aaiTempPdmOffset [ uiVId ]; |
---|
145 | } |
---|
146 | delete [] m_aaiTempScale; |
---|
147 | delete [] m_aaiTempOffset; |
---|
148 | delete [] m_aaiTempPdmScaleNomDelta; |
---|
149 | delete [] m_aaiTempPdmOffset; |
---|
150 | } |
---|
151 | |
---|
152 | // ==================================================================================================================== |
---|
153 | // Public member functions |
---|
154 | // ==================================================================================================================== |
---|
155 | |
---|
156 | /** |
---|
157 | * unmarshal a sequence of SEI messages from bitstream. |
---|
158 | */ |
---|
159 | void TDecCavlc::parseSEI(SEImessages& seis) |
---|
160 | { |
---|
161 | assert(!m_pcBitstream->getNumBitsUntilByteAligned()); |
---|
162 | do |
---|
163 | { |
---|
164 | parseSEImessage(*m_pcBitstream, seis); |
---|
165 | /* SEI messages are an integer number of bytes, something has failed |
---|
166 | * in the parsing if bitstream not byte-aligned */ |
---|
167 | assert(!m_pcBitstream->getNumBitsUntilByteAligned()); |
---|
168 | } while (0x80 != m_pcBitstream->peekBits(8)); |
---|
169 | assert(m_pcBitstream->getNumBitsLeft() == 8); /* rsbp_trailing_bits */ |
---|
170 | } |
---|
171 | void TDecCavlc::parseShortTermRefPicSet( TComSPS* sps, TComReferencePictureSet* rps, Int idx ) |
---|
172 | { |
---|
173 | UInt code; |
---|
174 | UInt interRPSPred; |
---|
175 | READ_FLAG(interRPSPred, "inter_ref_pic_set_prediction_flag"); rps->setInterRPSPrediction(interRPSPred); |
---|
176 | if (interRPSPred) |
---|
177 | { |
---|
178 | UInt bit; |
---|
179 | READ_UVLC(code, "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1 |
---|
180 | Int rIdx = idx - 1 - code; |
---|
181 | assert (rIdx <= idx && rIdx >= 0); |
---|
182 | TComReferencePictureSet* rpsRef = sps->getRPSList()->getReferencePictureSet(rIdx); |
---|
183 | Int k = 0, k0 = 0, k1 = 0; |
---|
184 | READ_CODE(1, bit, "delta_rps_sign"); // delta_RPS_sign |
---|
185 | READ_UVLC(code, "abs_delta_rps_minus1"); // absolute delta RPS minus 1 |
---|
186 | Int deltaRPS = (1 - (bit<<1)) * (code + 1); // delta_RPS |
---|
187 | for(Int j=0 ; j <= rpsRef->getNumberOfPictures(); j++) |
---|
188 | { |
---|
189 | READ_CODE(1, bit, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1 |
---|
190 | Int refIdc = bit; |
---|
191 | if (refIdc == 0) |
---|
192 | { |
---|
193 | READ_CODE(1, bit, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise. |
---|
194 | refIdc = bit<<1; //second bit is "1" if refIdc is 2, "0" if refIdc = 0. |
---|
195 | } |
---|
196 | if (refIdc == 1 || refIdc == 2) |
---|
197 | { |
---|
198 | Int deltaPOC = deltaRPS + ((j < rpsRef->getNumberOfPictures())? rpsRef->getDeltaPOC(j) : 0); |
---|
199 | rps->setDeltaPOC(k, deltaPOC); |
---|
200 | rps->setUsed(k, (refIdc == 1)); |
---|
201 | |
---|
202 | if (deltaPOC < 0) { |
---|
203 | k0++; |
---|
204 | } |
---|
205 | else |
---|
206 | { |
---|
207 | k1++; |
---|
208 | } |
---|
209 | k++; |
---|
210 | } |
---|
211 | rps->setRefIdc(j,refIdc); |
---|
212 | } |
---|
213 | rps->setNumRefIdc(rpsRef->getNumberOfPictures()+1); |
---|
214 | rps->setNumberOfPictures(k); |
---|
215 | rps->setNumberOfNegativePictures(k0); |
---|
216 | rps->setNumberOfPositivePictures(k1); |
---|
217 | rps->sortDeltaPOC(); |
---|
218 | } |
---|
219 | else |
---|
220 | { |
---|
221 | READ_UVLC(code, "num_negative_pics"); rps->setNumberOfNegativePictures(code); |
---|
222 | READ_UVLC(code, "num_positive_pics"); rps->setNumberOfPositivePictures(code); |
---|
223 | Int prev = 0; |
---|
224 | Int poc; |
---|
225 | for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++) |
---|
226 | { |
---|
227 | READ_UVLC(code, "delta_poc_s0_minus1"); |
---|
228 | poc = prev-code-1; |
---|
229 | prev = poc; |
---|
230 | rps->setDeltaPOC(j,poc); |
---|
231 | READ_FLAG(code, "used_by_curr_pic_s0_flag"); rps->setUsed(j,code); |
---|
232 | } |
---|
233 | prev = 0; |
---|
234 | for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++) |
---|
235 | { |
---|
236 | READ_UVLC(code, "delta_poc_s1_minus1"); |
---|
237 | poc = prev+code+1; |
---|
238 | prev = poc; |
---|
239 | rps->setDeltaPOC(j,poc); |
---|
240 | READ_FLAG(code, "used_by_curr_pic_s1_flag"); rps->setUsed(j,code); |
---|
241 | } |
---|
242 | rps->setNumberOfPictures(rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures()); |
---|
243 | } |
---|
244 | #if PRINT_RPS_INFO |
---|
245 | rps->printDeltaPOC(); |
---|
246 | #endif |
---|
247 | } |
---|
248 | |
---|
249 | Void TDecCavlc::parseAPS(TComAPS* aps) |
---|
250 | { |
---|
251 | #if ENC_DEC_TRACE |
---|
252 | xTraceAPSHeader(aps); |
---|
253 | #endif |
---|
254 | |
---|
255 | UInt uiCode; |
---|
256 | READ_UVLC(uiCode, "aps_id"); aps->setAPSID(uiCode); |
---|
257 | READ_FLAG(uiCode, "aps_scaling_list_data_present_flag"); aps->setScalingListEnabled( (uiCode==1)?true:false ); |
---|
258 | READ_FLAG(uiCode, "aps_deblocking_filter_flag"); aps->setLoopFilterOffsetInAPS( (uiCode==1)?true:false ); |
---|
259 | if(aps->getScalingListEnabled()) |
---|
260 | { |
---|
261 | parseScalingList( aps->getScalingList() ); |
---|
262 | } |
---|
263 | if(aps->getLoopFilterOffsetInAPS()) |
---|
264 | { |
---|
265 | xParseDblParam( aps ); |
---|
266 | } |
---|
267 | READ_FLAG(uiCode, "aps_sao_interleaving_flag"); aps->setSaoInterleavingFlag( (uiCode==1)?true:false ); |
---|
268 | if(!aps->getSaoInterleavingFlag()) |
---|
269 | { |
---|
270 | READ_FLAG(uiCode, "aps_sample_adaptive_offset_flag"); aps->setSaoEnabled( (uiCode==1)?true:false ); |
---|
271 | if(aps->getSaoEnabled()) |
---|
272 | { |
---|
273 | aps->getSaoParam()->bSaoFlag[0] = true; |
---|
274 | xParseSaoParam( aps->getSaoParam() ); |
---|
275 | } |
---|
276 | } |
---|
277 | READ_FLAG(uiCode, "aps_adaptive_loop_filter_flag"); aps->setAlfEnabled( (uiCode==1)?true:false ); |
---|
278 | if(aps->getAlfEnabled()) |
---|
279 | { |
---|
280 | xParseAlfParam( aps->getAlfParam()); |
---|
281 | } |
---|
282 | READ_FLAG( uiCode, "aps_extension_flag"); |
---|
283 | if (uiCode) |
---|
284 | { |
---|
285 | while ( xMoreRbspData() ) |
---|
286 | { |
---|
287 | READ_FLAG( uiCode, "aps_extension_data_flag"); |
---|
288 | } |
---|
289 | } |
---|
290 | |
---|
291 | } |
---|
292 | |
---|
293 | Void TDecCavlc::xParseDblParam ( TComAPS* aps ) |
---|
294 | { |
---|
295 | UInt uiSymbol; |
---|
296 | Int iSymbol; |
---|
297 | |
---|
298 | parseDFFlag(uiSymbol, "loop_filter_disable"); |
---|
299 | aps->setLoopFilterDisable(uiSymbol?true:false); |
---|
300 | |
---|
301 | if (!aps->getLoopFilterDisable()) |
---|
302 | { |
---|
303 | parseDFSvlc(iSymbol, "beta_offset_div2"); |
---|
304 | aps->setLoopFilterBetaOffset(iSymbol); |
---|
305 | parseDFSvlc(iSymbol, "tc_offset_div2"); |
---|
306 | aps->setLoopFilterTcOffset(iSymbol); |
---|
307 | } |
---|
308 | } |
---|
309 | /** parse SAO parameters |
---|
310 | * \param pSaoParam |
---|
311 | */ |
---|
312 | Void TDecCavlc::xParseSaoParam(SAOParam* pSaoParam) |
---|
313 | { |
---|
314 | UInt uiSymbol; |
---|
315 | |
---|
316 | int i,j, compIdx; |
---|
317 | int numCuInWidth; |
---|
318 | int numCuInHeight; |
---|
319 | Bool repeatedRow[3]; |
---|
320 | if (pSaoParam->bSaoFlag[0]) |
---|
321 | { |
---|
322 | READ_FLAG (uiSymbol, "sao_cb_enable_flag"); pSaoParam->bSaoFlag[1] = uiSymbol? true:false; |
---|
323 | READ_FLAG (uiSymbol, "sao_cr_enable_flag"); pSaoParam->bSaoFlag[2] = uiSymbol? true:false; |
---|
324 | READ_UVLC (uiSymbol, "sao_num_lcu_in_width_minus1"); pSaoParam->numCuInWidth = uiSymbol + 1; |
---|
325 | READ_UVLC (uiSymbol, "sao_num_lcu_in_height_minus1"); pSaoParam->numCuInHeight = uiSymbol + 1; |
---|
326 | numCuInWidth = pSaoParam->numCuInWidth; |
---|
327 | numCuInHeight = pSaoParam->numCuInHeight; |
---|
328 | |
---|
329 | READ_FLAG (uiSymbol, "sao_one_luma_unit_flag"); pSaoParam->oneUnitFlag[0] = uiSymbol? true:false; |
---|
330 | if (pSaoParam->oneUnitFlag[0] ) |
---|
331 | xParseSaoOffset(&(pSaoParam->saoLcuParam[0][0])); |
---|
332 | |
---|
333 | if (pSaoParam->bSaoFlag[1]) |
---|
334 | { |
---|
335 | READ_FLAG (uiSymbol, "sao_one_cb_unit_flag"); pSaoParam->oneUnitFlag[1] = uiSymbol? true:false; |
---|
336 | if (pSaoParam->oneUnitFlag[1] ) |
---|
337 | xParseSaoOffset(&(pSaoParam->saoLcuParam[1][0])); |
---|
338 | } |
---|
339 | if (pSaoParam->bSaoFlag[2]) |
---|
340 | { |
---|
341 | READ_FLAG (uiSymbol, "sao_one_cr_unit_flag"); pSaoParam->oneUnitFlag[2] = uiSymbol? true:false; |
---|
342 | if (pSaoParam->oneUnitFlag[2] ) |
---|
343 | xParseSaoOffset(&(pSaoParam->saoLcuParam[2][0])); |
---|
344 | } |
---|
345 | for (j=0;j<numCuInHeight;j++) |
---|
346 | { |
---|
347 | for (compIdx=0;compIdx<3;compIdx++) |
---|
348 | { |
---|
349 | repeatedRow[compIdx] = 0; |
---|
350 | } |
---|
351 | for (i=0;i<numCuInWidth;i++) |
---|
352 | { |
---|
353 | for (compIdx=0; compIdx<3; compIdx++) |
---|
354 | { |
---|
355 | if (pSaoParam->bSaoFlag[compIdx] && !pSaoParam->oneUnitFlag[compIdx]) |
---|
356 | { |
---|
357 | if (j>0 && i==0) |
---|
358 | { |
---|
359 | READ_FLAG (uiSymbol, "sao_repeat_row_flag"); repeatedRow[compIdx] = uiSymbol? true:false; |
---|
360 | } |
---|
361 | xParseSaoUnit (i,j, compIdx, pSaoParam, repeatedRow[compIdx]); |
---|
362 | } |
---|
363 | } |
---|
364 | } |
---|
365 | } |
---|
366 | } |
---|
367 | } |
---|
368 | /** copy SAO parameter |
---|
369 | * \param dst |
---|
370 | * \param src |
---|
371 | */ |
---|
372 | inline Void copySaoOneLcuParam(SaoLcuParam* dst, SaoLcuParam* src) |
---|
373 | { |
---|
374 | Int i; |
---|
375 | dst->partIdx = src->partIdx; |
---|
376 | dst->typeIdx = src->typeIdx; |
---|
377 | if (dst->typeIdx != -1) |
---|
378 | { |
---|
379 | if (dst->typeIdx == SAO_BO) |
---|
380 | { |
---|
381 | dst->bandPosition = src->bandPosition ; |
---|
382 | } |
---|
383 | else |
---|
384 | { |
---|
385 | dst->bandPosition = 0; |
---|
386 | } |
---|
387 | dst->length = src->length; |
---|
388 | for (i=0;i<dst->length;i++) |
---|
389 | { |
---|
390 | dst->offset[i] = src->offset[i]; |
---|
391 | } |
---|
392 | } |
---|
393 | else |
---|
394 | { |
---|
395 | dst->length = 0; |
---|
396 | for (i=0;i<SAO_BO_LEN;i++) |
---|
397 | { |
---|
398 | dst->offset[i] = 0; |
---|
399 | } |
---|
400 | } |
---|
401 | } |
---|
402 | /** parse SAO offset |
---|
403 | * \param saoLcuParam SAO LCU parameters |
---|
404 | */ |
---|
405 | Void TDecCavlc::xParseSaoOffset(SaoLcuParam* saoLcuParam) |
---|
406 | { |
---|
407 | UInt uiSymbol; |
---|
408 | Int iSymbol; |
---|
409 | static Int typeLength[MAX_NUM_SAO_TYPE] = { |
---|
410 | SAO_EO_LEN, |
---|
411 | SAO_EO_LEN, |
---|
412 | SAO_EO_LEN, |
---|
413 | SAO_EO_LEN, |
---|
414 | SAO_BO_LEN |
---|
415 | }; |
---|
416 | |
---|
417 | READ_UVLC (uiSymbol, "sao_type_idx"); saoLcuParam->typeIdx = (Int)uiSymbol - 1; |
---|
418 | if (uiSymbol) |
---|
419 | { |
---|
420 | saoLcuParam->length = typeLength[saoLcuParam->typeIdx]; |
---|
421 | if( saoLcuParam->typeIdx == SAO_BO ) |
---|
422 | { |
---|
423 | READ_CODE( 5, uiSymbol, "sao_band_position"); saoLcuParam->bandPosition = uiSymbol; |
---|
424 | for(Int i=0; i< saoLcuParam->length; i++) |
---|
425 | { |
---|
426 | READ_SVLC (iSymbol, "sao_offset"); saoLcuParam->offset[i] = iSymbol; |
---|
427 | } |
---|
428 | } |
---|
429 | else if( saoLcuParam->typeIdx < 4 ) |
---|
430 | { |
---|
431 | READ_UVLC (uiSymbol, "sao_offset"); saoLcuParam->offset[0] = uiSymbol; |
---|
432 | READ_UVLC (uiSymbol, "sao_offset"); saoLcuParam->offset[1] = uiSymbol; |
---|
433 | READ_UVLC (uiSymbol, "sao_offset"); saoLcuParam->offset[2] = -(Int)uiSymbol; |
---|
434 | READ_UVLC (uiSymbol, "sao_offset"); saoLcuParam->offset[3] = -(Int)uiSymbol; |
---|
435 | } |
---|
436 | } |
---|
437 | else |
---|
438 | { |
---|
439 | saoLcuParam->length = 0; |
---|
440 | } |
---|
441 | } |
---|
442 | |
---|
443 | /** parse SAO unit |
---|
444 | * \param rx x-axis location |
---|
445 | * \param ry y-axis location |
---|
446 | * \param compIdx color component index |
---|
447 | * \param saoParam SAO parameters |
---|
448 | * \param repeatedRow repeat row flag |
---|
449 | */ |
---|
450 | void TDecCavlc::xParseSaoUnit(Int rx, Int ry, Int compIdx, SAOParam* saoParam, Bool& repeatedRow ) |
---|
451 | { |
---|
452 | int addr, addrUp, addrLeft; |
---|
453 | int numCuInWidth = saoParam->numCuInWidth; |
---|
454 | SaoLcuParam* saoOneLcu; |
---|
455 | SaoLcuParam* saoOneLcuUp; |
---|
456 | SaoLcuParam* saoOneLcuLeft; |
---|
457 | UInt uiSymbol; |
---|
458 | Int iSymbol; |
---|
459 | Int runLeft; |
---|
460 | UInt maxValue; |
---|
461 | |
---|
462 | addr = rx + ry*numCuInWidth; |
---|
463 | addrLeft = (addr%numCuInWidth == 0) ? -1 : addr - 1; |
---|
464 | addrUp = (addr<numCuInWidth) ? -1 : addr - numCuInWidth; |
---|
465 | |
---|
466 | saoOneLcu = &(saoParam->saoLcuParam[compIdx][addr]); |
---|
467 | if (!repeatedRow) |
---|
468 | { |
---|
469 | runLeft = (addrLeft>=0 ) ? saoParam->saoLcuParam[compIdx][addrLeft].run : -1; |
---|
470 | if (rx == 0 || runLeft==0) |
---|
471 | { |
---|
472 | saoOneLcu->mergeLeftFlag = 0; |
---|
473 | if (ry == 0) |
---|
474 | { |
---|
475 | maxValue = numCuInWidth-rx-1; |
---|
476 | UInt length = 0; |
---|
477 | UInt val = 0; |
---|
478 | if (maxValue) |
---|
479 | { |
---|
480 | for(UInt i=0; i<32; i++) |
---|
481 | { |
---|
482 | if(maxValue&0x1) |
---|
483 | { |
---|
484 | length = i+1; |
---|
485 | } |
---|
486 | maxValue = (maxValue >> 1); |
---|
487 | } |
---|
488 | if(length) |
---|
489 | { |
---|
490 | READ_CODE(length, val, "sao_run_diff"); |
---|
491 | } |
---|
492 | } |
---|
493 | uiSymbol = val; |
---|
494 | saoOneLcu->runDiff = uiSymbol; |
---|
495 | xParseSaoOffset(saoOneLcu); |
---|
496 | saoOneLcu->run = saoOneLcu->runDiff; |
---|
497 | } |
---|
498 | else |
---|
499 | { |
---|
500 | saoOneLcuUp = &(saoParam->saoLcuParam[compIdx][addrUp]); |
---|
501 | READ_SVLC (iSymbol , "sao_run_diff" ); saoOneLcu->runDiff = iSymbol; |
---|
502 | READ_FLAG (uiSymbol, "sao_merge_up_flag"); saoOneLcu->mergeUpFlag = uiSymbol? true:false; |
---|
503 | if (!saoOneLcu->mergeUpFlag) |
---|
504 | { |
---|
505 | xParseSaoOffset(saoOneLcu); |
---|
506 | } |
---|
507 | else |
---|
508 | { |
---|
509 | saoOneLcuUp = &(saoParam->saoLcuParam[compIdx][addrUp]); |
---|
510 | copySaoOneLcuParam(saoOneLcu, saoOneLcuUp); |
---|
511 | } |
---|
512 | saoOneLcu->run = saoOneLcu->runDiff + saoOneLcuUp->run; |
---|
513 | } |
---|
514 | } |
---|
515 | else |
---|
516 | { |
---|
517 | saoOneLcuLeft = &(saoParam->saoLcuParam[compIdx][addrLeft]); |
---|
518 | copySaoOneLcuParam(saoOneLcu, saoOneLcuLeft); |
---|
519 | saoOneLcu->mergeLeftFlag = 1; |
---|
520 | saoOneLcu->run = saoOneLcuLeft->run-1; |
---|
521 | } |
---|
522 | } |
---|
523 | else |
---|
524 | { |
---|
525 | if (ry > 0) |
---|
526 | { |
---|
527 | saoOneLcuUp = &(saoParam->saoLcuParam[compIdx][addrUp]); |
---|
528 | copySaoOneLcuParam(saoOneLcu, saoOneLcuUp); |
---|
529 | saoOneLcu->mergeLeftFlag = 0; |
---|
530 | saoOneLcu->run = saoOneLcuUp->run; |
---|
531 | } |
---|
532 | } |
---|
533 | } |
---|
534 | |
---|
535 | |
---|
536 | Void TDecCavlc::xParseAlfParam(AlfParamSet* pAlfParamSet, Bool bSentInAPS, Int firstLCUAddr, Bool acrossSlice, Int numLCUInWidth, Int numLCUInHeight) |
---|
537 | { |
---|
538 | Int numLCU; |
---|
539 | UInt uiSymbol; |
---|
540 | Bool isEnabled[NUM_ALF_COMPONENT]; |
---|
541 | Bool isUniParam[NUM_ALF_COMPONENT]; |
---|
542 | |
---|
543 | isEnabled[ALF_Y] = true; |
---|
544 | READ_FLAG(uiSymbol, "alf_cb_enable_flag"); isEnabled[ALF_Cb] = ((uiSymbol ==1)?true:false); |
---|
545 | READ_FLAG(uiSymbol, "alf_cr_enable_flag"); isEnabled[ALF_Cr] = ((uiSymbol ==1)?true:false); |
---|
546 | READ_FLAG(uiSymbol, "alf_one_luma_unit_per_slice_flag"); isUniParam[ALF_Y] = ((uiSymbol ==1)?true:false); |
---|
547 | |
---|
548 | isUniParam[ALF_Cb] = true; |
---|
549 | if (isEnabled[ALF_Cb]) |
---|
550 | { |
---|
551 | READ_FLAG(uiSymbol, "alf_one_cb_unit_per_slice_flag"); isUniParam[ALF_Cb] = ((uiSymbol ==1)?true:false); |
---|
552 | } |
---|
553 | |
---|
554 | isUniParam[ALF_Cr] = true; |
---|
555 | if (isEnabled[ALF_Cr]) |
---|
556 | { |
---|
557 | READ_FLAG(uiSymbol, "alf_one_cr_unit_per_slice_flag"); isUniParam[ALF_Cr] = ((uiSymbol ==1)?true:false); |
---|
558 | } |
---|
559 | |
---|
560 | if(bSentInAPS) |
---|
561 | { |
---|
562 | READ_UVLC(uiSymbol, "alf_num_lcu_in_width_minus1"); numLCUInWidth = uiSymbol+1; |
---|
563 | READ_UVLC(uiSymbol, "alf_num_lcu_in_height_minus1"); numLCUInHeight = uiSymbol+1; |
---|
564 | numLCU = numLCUInWidth*numLCUInHeight; |
---|
565 | } |
---|
566 | else //sent in slice header |
---|
567 | { |
---|
568 | READ_UVLC(uiSymbol, "alf_num_lcu_in_slice_minus1"); numLCU = uiSymbol+1; |
---|
569 | } |
---|
570 | |
---|
571 | assert(pAlfParamSet != NULL); |
---|
572 | |
---|
573 | pAlfParamSet->create(numLCUInWidth, numLCUInHeight, numLCU); |
---|
574 | for(Int compIdx = 0; compIdx < NUM_ALF_COMPONENT; compIdx++) |
---|
575 | { |
---|
576 | pAlfParamSet->isEnabled[compIdx] = isEnabled[compIdx]; |
---|
577 | pAlfParamSet->isUniParam[compIdx]= isUniParam[compIdx]; |
---|
578 | } |
---|
579 | |
---|
580 | parseAlfParamSet(pAlfParamSet, firstLCUAddr, acrossSlice); |
---|
581 | } |
---|
582 | |
---|
583 | |
---|
584 | Void TDecCavlc::parseAlfParamSet(AlfParamSet* pAlfParamSet, Int firstLCUAddr, Bool alfAcrossSlice) |
---|
585 | { |
---|
586 | Int numLCUInWidth = pAlfParamSet->numLCUInWidth; |
---|
587 | Int numLCU = pAlfParamSet->numLCU; |
---|
588 | |
---|
589 | static Bool isRepeatedRow [NUM_ALF_COMPONENT]; |
---|
590 | static Int numStoredFilters[NUM_ALF_COMPONENT]; |
---|
591 | static Int* run [NUM_ALF_COMPONENT]; |
---|
592 | |
---|
593 | for(Int compIdx =0; compIdx < NUM_ALF_COMPONENT; compIdx++) |
---|
594 | { |
---|
595 | isRepeatedRow[compIdx] = false; |
---|
596 | numStoredFilters[compIdx] = 0; |
---|
597 | |
---|
598 | run[compIdx] = new Int[numLCU+1]; |
---|
599 | run[compIdx][0] = -1; |
---|
600 | } |
---|
601 | |
---|
602 | UInt uiSymbol; |
---|
603 | Int iSymbol, ry, rx, addrUp; |
---|
604 | |
---|
605 | for(Int i=0; i< numLCU; i++) |
---|
606 | { |
---|
607 | rx = (i+ firstLCUAddr)% numLCUInWidth; |
---|
608 | ry = (i+ firstLCUAddr)/ numLCUInWidth; |
---|
609 | |
---|
610 | for(Int compIdx =0; compIdx < NUM_ALF_COMPONENT; compIdx++) |
---|
611 | { |
---|
612 | AlfUnitParam& alfUnitParam = pAlfParamSet->alfUnitParam[compIdx][i]; |
---|
613 | |
---|
614 | if(pAlfParamSet->isEnabled[compIdx]) |
---|
615 | { |
---|
616 | if(!pAlfParamSet->isUniParam[compIdx]) |
---|
617 | { |
---|
618 | addrUp = i-numLCUInWidth; |
---|
619 | if(rx ==0 && addrUp >=0) |
---|
620 | { |
---|
621 | READ_FLAG(uiSymbol, "alf_repeat_row _flag"); isRepeatedRow[compIdx] = ((uiSymbol ==1)?true:false); |
---|
622 | } |
---|
623 | |
---|
624 | if(isRepeatedRow[compIdx]) |
---|
625 | { |
---|
626 | alfUnitParam.mergeType = ALF_MERGE_UP; |
---|
627 | assert(addrUp >=0); |
---|
628 | run[compIdx][i] = run[compIdx][addrUp]; |
---|
629 | } |
---|
630 | else |
---|
631 | { |
---|
632 | if(rx == 0 || run[compIdx][i] < 0) |
---|
633 | { |
---|
634 | if(addrUp < 0) |
---|
635 | { |
---|
636 | //alf_run_diff u(v) |
---|
637 | parseAlfFixedLengthRun(uiSymbol, rx, numLCUInWidth); |
---|
638 | run[compIdx][i] = uiSymbol; |
---|
639 | } |
---|
640 | else |
---|
641 | { |
---|
642 | //alf_run_diff s(v) |
---|
643 | READ_SVLC(iSymbol, "alf_run_diff"); |
---|
644 | run[compIdx][i] = run[compIdx][addrUp] + iSymbol; |
---|
645 | assert(run[compIdx][i] >= 0); |
---|
646 | } |
---|
647 | |
---|
648 | if(ry > 0 && (addrUp >=0 || alfAcrossSlice)) |
---|
649 | { |
---|
650 | //alf_merge_up_flag |
---|
651 | READ_FLAG(uiSymbol, "alf_merge_up_flag"); alfUnitParam.mergeType = ((uiSymbol ==1)?ALF_MERGE_UP:ALF_MERGE_DISABLED); |
---|
652 | } |
---|
653 | else |
---|
654 | { |
---|
655 | alfUnitParam.mergeType = ALF_MERGE_DISABLED; |
---|
656 | } |
---|
657 | |
---|
658 | if(alfUnitParam.mergeType != ALF_MERGE_UP) |
---|
659 | { |
---|
660 | //alf_lcu_enable_flag |
---|
661 | READ_FLAG(uiSymbol, "alf_lcu_enable_flag"); alfUnitParam.isEnabled = ((uiSymbol ==1)?true:false); |
---|
662 | |
---|
663 | if(alfUnitParam.isEnabled) |
---|
664 | { |
---|
665 | if(numStoredFilters[compIdx] > 0) |
---|
666 | { |
---|
667 | //alf_new_filter_set_flag |
---|
668 | READ_FLAG(uiSymbol, "alf_new_filter_set_flag"); alfUnitParam.isNewFilt = ((uiSymbol ==1)?true:false); |
---|
669 | |
---|
670 | if(!alfUnitParam.isNewFilt) |
---|
671 | { |
---|
672 | //alf_stored_filter_set_idx |
---|
673 | parseAlfStoredFilterIdx(uiSymbol, numStoredFilters[compIdx]); |
---|
674 | |
---|
675 | alfUnitParam.storedFiltIdx = uiSymbol; |
---|
676 | |
---|
677 | assert( alfUnitParam.storedFiltIdx < numStoredFilters[compIdx]); |
---|
678 | } |
---|
679 | } |
---|
680 | else |
---|
681 | { |
---|
682 | alfUnitParam.isNewFilt = true; |
---|
683 | } |
---|
684 | |
---|
685 | if(alfUnitParam.isNewFilt) |
---|
686 | { |
---|
687 | alfUnitParam.alfFiltParam = new ALFParam(compIdx); |
---|
688 | xParseAlfParam(alfUnitParam.alfFiltParam); |
---|
689 | alfUnitParam.alfFiltParam->alf_flag = 1; |
---|
690 | |
---|
691 | numStoredFilters[compIdx]++; |
---|
692 | } |
---|
693 | } |
---|
694 | |
---|
695 | } |
---|
696 | } |
---|
697 | else |
---|
698 | { |
---|
699 | alfUnitParam.mergeType = ALF_MERGE_LEFT; |
---|
700 | } |
---|
701 | |
---|
702 | run[compIdx][i+1] = run[compIdx][i] -1; |
---|
703 | } |
---|
704 | |
---|
705 | } |
---|
706 | else // uni-param |
---|
707 | { |
---|
708 | if(i == 0) |
---|
709 | { |
---|
710 | alfUnitParam.mergeType = ALF_MERGE_DISABLED; |
---|
711 | |
---|
712 | //alf_lcu_enable_flag |
---|
713 | READ_FLAG(uiSymbol, "alf_lcu_enable_flag"); alfUnitParam.isEnabled = ((uiSymbol ==1)?true:false); |
---|
714 | if(alfUnitParam.isEnabled) |
---|
715 | { |
---|
716 | alfUnitParam.isNewFilt = true; |
---|
717 | alfUnitParam.alfFiltParam = new ALFParam(compIdx); |
---|
718 | xParseAlfParam(alfUnitParam.alfFiltParam); |
---|
719 | alfUnitParam.alfFiltParam->alf_flag = 1; |
---|
720 | } |
---|
721 | } |
---|
722 | else |
---|
723 | { |
---|
724 | alfUnitParam.mergeType = ALF_MERGE_FIRST; |
---|
725 | } |
---|
726 | |
---|
727 | } |
---|
728 | } |
---|
729 | else |
---|
730 | { |
---|
731 | alfUnitParam.mergeType = ALF_MERGE_DISABLED; |
---|
732 | alfUnitParam.isEnabled = false; |
---|
733 | } |
---|
734 | } |
---|
735 | } |
---|
736 | |
---|
737 | for(Int compIdx =0; compIdx < NUM_ALF_COMPONENT; compIdx++) |
---|
738 | { |
---|
739 | delete[] run[compIdx]; |
---|
740 | } |
---|
741 | } |
---|
742 | |
---|
743 | |
---|
744 | Void TDecCavlc::parseAlfFixedLengthRun( UInt& idx, UInt rx, UInt numLCUInWidth ) |
---|
745 | { |
---|
746 | assert(numLCUInWidth > rx); |
---|
747 | |
---|
748 | UInt length = 0; |
---|
749 | UInt maxNumRun = numLCUInWidth - rx - 1; |
---|
750 | |
---|
751 | for(UInt i=0; i<32; i++) |
---|
752 | { |
---|
753 | if(maxNumRun&0x1) |
---|
754 | { |
---|
755 | length = i+1; |
---|
756 | } |
---|
757 | maxNumRun = (maxNumRun >> 1); |
---|
758 | } |
---|
759 | |
---|
760 | idx = 0; |
---|
761 | if(length) |
---|
762 | { |
---|
763 | READ_CODE( length, idx, "alf_run_diff" ); |
---|
764 | } |
---|
765 | else |
---|
766 | { |
---|
767 | idx = 0; |
---|
768 | } |
---|
769 | } |
---|
770 | |
---|
771 | |
---|
772 | Void TDecCavlc::parseAlfStoredFilterIdx( UInt& idx, UInt numFilterSetsInBuffer ) |
---|
773 | { |
---|
774 | assert(numFilterSetsInBuffer > 0); |
---|
775 | |
---|
776 | UInt length = 0; |
---|
777 | UInt maxValue = numFilterSetsInBuffer - 1; |
---|
778 | |
---|
779 | for(UInt i=0; i<32; i++) |
---|
780 | { |
---|
781 | if(maxValue&0x1) |
---|
782 | { |
---|
783 | length = i+1; |
---|
784 | } |
---|
785 | maxValue = (maxValue >> 1); |
---|
786 | } |
---|
787 | |
---|
788 | idx = 0; |
---|
789 | if(length) |
---|
790 | { |
---|
791 | READ_CODE( length, idx, "alf_stored_filter_set_idx" ); |
---|
792 | } |
---|
793 | else |
---|
794 | { |
---|
795 | idx = 0; |
---|
796 | } |
---|
797 | } |
---|
798 | |
---|
799 | |
---|
800 | Void TDecCavlc::xParseAlfParam(ALFParam* pAlfParam) |
---|
801 | { |
---|
802 | UInt uiSymbol; |
---|
803 | Int iSymbol; |
---|
804 | Int sqrFiltLengthTab[NUM_ALF_FILTER_SHAPE] = {ALF_FILTER_LEN}; |
---|
805 | |
---|
806 | switch(pAlfParam->componentID) |
---|
807 | { |
---|
808 | case ALF_Cb: |
---|
809 | case ALF_Cr: |
---|
810 | { |
---|
811 | pAlfParam->filter_shape = ALF_CROSS9x7_SQUARE3x3; |
---|
812 | pAlfParam->num_coeff = sqrFiltLengthTab[pAlfParam->filter_shape]; |
---|
813 | pAlfParam->filters_per_group = 1; |
---|
814 | for(Int pos=0; pos< pAlfParam->num_coeff; pos++) |
---|
815 | { |
---|
816 | READ_SVLC(iSymbol, "alf_filt_coeff"); |
---|
817 | pAlfParam->coeffmulti[0][pos] = iSymbol; |
---|
818 | } |
---|
819 | } |
---|
820 | break; |
---|
821 | case ALF_Y: |
---|
822 | { |
---|
823 | pAlfParam->filters_per_group = 0; |
---|
824 | memset (pAlfParam->filterPattern, 0 , sizeof(Int)*NO_VAR_BINS); |
---|
825 | pAlfParam->filter_shape = 0; |
---|
826 | pAlfParam->num_coeff = sqrFiltLengthTab[pAlfParam->filter_shape]; |
---|
827 | |
---|
828 | // filters_per_fr |
---|
829 | READ_UVLC (uiSymbol, "alf_no_filters_minus1"); |
---|
830 | pAlfParam->filters_per_group = uiSymbol + 1; |
---|
831 | |
---|
832 | if(uiSymbol == 1) // filters_per_group == 2 |
---|
833 | { |
---|
834 | READ_UVLC (uiSymbol, "alf_start_second_filter"); |
---|
835 | pAlfParam->startSecondFilter = uiSymbol; |
---|
836 | pAlfParam->filterPattern [uiSymbol] = 1; |
---|
837 | } |
---|
838 | else if (uiSymbol > 1) // filters_per_group > 2 |
---|
839 | { |
---|
840 | pAlfParam->filters_per_group = 1; |
---|
841 | Int numMergeFlags = 16; |
---|
842 | for (Int i=1; i<numMergeFlags; i++) |
---|
843 | { |
---|
844 | READ_FLAG (uiSymbol, "alf_filter_pattern"); |
---|
845 | pAlfParam->filterPattern[i] = uiSymbol; |
---|
846 | pAlfParam->filters_per_group += uiSymbol; |
---|
847 | } |
---|
848 | } |
---|
849 | |
---|
850 | if (pAlfParam->filters_per_group > 1) |
---|
851 | { |
---|
852 | READ_FLAG (uiSymbol, "alf_pred_method"); |
---|
853 | pAlfParam->predMethod = uiSymbol; |
---|
854 | } |
---|
855 | for(Int idx = 0; idx < pAlfParam->filters_per_group; ++idx) |
---|
856 | { |
---|
857 | READ_FLAG (uiSymbol,"alf_nb_pred_luma"); |
---|
858 | pAlfParam->nbSPred[idx] = uiSymbol; |
---|
859 | } |
---|
860 | |
---|
861 | Int minScanVal = MIN_SCAN_POS_CROSS; |
---|
862 | |
---|
863 | // Determine maxScanVal |
---|
864 | Int maxScanVal = 0; |
---|
865 | Int *pDepthInt = pDepthIntTabShapes[pAlfParam->filter_shape]; |
---|
866 | for(Int idx = 0; idx < pAlfParam->num_coeff; idx++) |
---|
867 | { |
---|
868 | maxScanVal = max(maxScanVal, pDepthInt[idx]); |
---|
869 | } |
---|
870 | |
---|
871 | // Golomb parameters |
---|
872 | if( pAlfParam->filters_per_group > 1 ) |
---|
873 | { |
---|
874 | READ_UVLC (uiSymbol, "alf_min_kstart_minus1"); |
---|
875 | pAlfParam->minKStart = 1 + uiSymbol; |
---|
876 | |
---|
877 | Int kMin = pAlfParam->minKStart; |
---|
878 | |
---|
879 | for(Int scanPos = minScanVal; scanPos < maxScanVal; scanPos++) |
---|
880 | { |
---|
881 | READ_FLAG (uiSymbol, "alf_golomb_index_bit"); |
---|
882 | pAlfParam->kMinTab[scanPos] = kMin + uiSymbol; |
---|
883 | kMin = pAlfParam->kMinTab[scanPos]; |
---|
884 | } |
---|
885 | } |
---|
886 | |
---|
887 | Int scanPos; |
---|
888 | for(Int idx = 0; idx < pAlfParam->filters_per_group; ++idx) |
---|
889 | { |
---|
890 | for(Int i = 0; i < pAlfParam->num_coeff; i++) |
---|
891 | { |
---|
892 | scanPos = pDepthInt[i] - 1; |
---|
893 | Int k = (pAlfParam->filters_per_group == 1) ? kTableTabShapes[ALF_CROSS9x7_SQUARE3x3][i] : pAlfParam->kMinTab[scanPos]; |
---|
894 | pAlfParam->coeffmulti[idx][i] = xGolombDecode(k); |
---|
895 | } |
---|
896 | } |
---|
897 | } |
---|
898 | break; |
---|
899 | default: |
---|
900 | { |
---|
901 | printf("Not a legal component ID for ALF\n"); |
---|
902 | assert(0); |
---|
903 | exit(-1); |
---|
904 | } |
---|
905 | } |
---|
906 | } |
---|
907 | |
---|
908 | Int TDecCavlc::xGolombDecode(Int k) |
---|
909 | { |
---|
910 | UInt uiSymbol; |
---|
911 | Int q = -1; |
---|
912 | Int nr = 0; |
---|
913 | Int a; |
---|
914 | |
---|
915 | uiSymbol = 1; |
---|
916 | while (uiSymbol) |
---|
917 | { |
---|
918 | xReadFlag(uiSymbol); |
---|
919 | q++; |
---|
920 | } |
---|
921 | for(a = 0; a < k; ++a) // read out the sequential log2(M) bits |
---|
922 | { |
---|
923 | xReadFlag(uiSymbol); |
---|
924 | if(uiSymbol) |
---|
925 | nr += 1 << a; |
---|
926 | } |
---|
927 | nr += q << k; |
---|
928 | if(nr != 0) |
---|
929 | { |
---|
930 | xReadFlag(uiSymbol); |
---|
931 | nr = (uiSymbol)? nr: -nr; |
---|
932 | } |
---|
933 | #if ENC_DEC_TRACE |
---|
934 | fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); |
---|
935 | fprintf( g_hTrace, "%-40s ge(v) : %d\n", "alf_coeff_luma", nr ); |
---|
936 | #endif |
---|
937 | return nr; |
---|
938 | } |
---|
939 | |
---|
940 | Void TDecCavlc::parsePPS(TComPPS* pcPPS, ParameterSetManagerDecoder *parameterSet) |
---|
941 | { |
---|
942 | #if ENC_DEC_TRACE |
---|
943 | xTracePPSHeader (pcPPS); |
---|
944 | #endif |
---|
945 | UInt uiCode; |
---|
946 | |
---|
947 | Int iCode; |
---|
948 | |
---|
949 | READ_UVLC( uiCode, "pic_parameter_set_id"); pcPPS->setPPSId (uiCode); |
---|
950 | READ_UVLC( uiCode, "seq_parameter_set_id"); pcPPS->setSPSId (uiCode); |
---|
951 | |
---|
952 | READ_FLAG ( uiCode, "sign_data_hiding_flag" ); pcPPS->setSignHideFlag( uiCode ); |
---|
953 | if( pcPPS->getSignHideFlag() ) |
---|
954 | { |
---|
955 | READ_CODE( 4, uiCode, "sign_hiding_threshold"); pcPPS->setTSIG(uiCode); |
---|
956 | } |
---|
957 | |
---|
958 | #if CABAC_INIT_FLAG |
---|
959 | READ_FLAG( uiCode, "cabac_init_present_flag" ); pcPPS->setCabacInitPresentFlag( uiCode ? true : false ); |
---|
960 | #endif |
---|
961 | // entropy_coding_mode_flag |
---|
962 | // We code the entropy_coding_mode_flag, it's needed for tests. |
---|
963 | READ_FLAG( uiCode, "entropy_coding_mode_flag" ); pcPPS->setEntropyCodingMode( uiCode ? true : false ); |
---|
964 | if (pcPPS->getEntropyCodingMode()) |
---|
965 | { |
---|
966 | } |
---|
967 | |
---|
968 | // num_ref_idx_l0_default_active_minus1 |
---|
969 | // num_ref_idx_l1_default_active_minus1 |
---|
970 | READ_SVLC(iCode, "pic_init_qp_minus26" ); pcPPS->setPicInitQPMinus26(iCode); |
---|
971 | READ_FLAG( uiCode, "constrained_intra_pred_flag" ); pcPPS->setConstrainedIntraPred( uiCode ? true : false ); |
---|
972 | READ_FLAG( uiCode, "enable_temporal_mvp_flag" ); pcPPS->setEnableTMVPFlag( uiCode ? true : false ); |
---|
973 | READ_CODE( 2, uiCode, "slice_granularity" ); pcPPS->setSliceGranularity(uiCode); |
---|
974 | |
---|
975 | // alf_param() ? |
---|
976 | |
---|
977 | READ_UVLC( uiCode, "max_cu_qp_delta_depth"); |
---|
978 | if(uiCode == 0) |
---|
979 | { |
---|
980 | pcPPS->setUseDQP (false); |
---|
981 | pcPPS->setMaxCuDQPDepth( 0 ); |
---|
982 | } |
---|
983 | else |
---|
984 | { |
---|
985 | pcPPS->setUseDQP (true); |
---|
986 | pcPPS->setMaxCuDQPDepth(uiCode - 1); |
---|
987 | } |
---|
988 | |
---|
989 | READ_SVLC( iCode, "chroma_qp_offset"); |
---|
990 | pcPPS->setChromaQpOffset(iCode); |
---|
991 | |
---|
992 | READ_SVLC( iCode, "chroma_qp_offset_2nd"); |
---|
993 | pcPPS->setChromaQpOffset2nd(iCode); |
---|
994 | |
---|
995 | READ_FLAG( uiCode, "weighted_pred_flag" ); // Use of Weighting Prediction (P_SLICE) |
---|
996 | pcPPS->setUseWP( uiCode==1 ); |
---|
997 | READ_CODE( 2, uiCode, "weighted_bipred_idc" ); // Use of Bi-Directional Weighting Prediction (B_SLICE) |
---|
998 | pcPPS->setWPBiPredIdc( uiCode ); |
---|
999 | //printf("TDecCavlc::parsePPS():\tm_bUseWeightPred=%d\tm_uiBiPredIdc=%d\n", pcPPS->getUseWP(), pcPPS->getWPBiPredIdc()); |
---|
1000 | |
---|
1001 | READ_FLAG( uiCode, "output_flag_present_flag" ); |
---|
1002 | pcPPS->setOutputFlagPresentFlag( uiCode==1 ); |
---|
1003 | |
---|
1004 | if(parameterSet->getPrefetchedSPS(pcPPS->getSPSId())->getTilesOrEntropyCodingSyncIdc()==1) |
---|
1005 | { |
---|
1006 | READ_FLAG ( uiCode, "tile_info_present_flag" ); |
---|
1007 | pcPPS->setColumnRowInfoPresent(uiCode); |
---|
1008 | READ_FLAG ( uiCode, "tile_control_present_flag" ); |
---|
1009 | pcPPS->setTileBehaviorControlPresentFlag(uiCode); |
---|
1010 | if( pcPPS->getColumnRowInfoPresent() == 1 ) |
---|
1011 | { |
---|
1012 | READ_UVLC ( uiCode, "num_tile_columns_minus1" ); |
---|
1013 | pcPPS->setNumColumnsMinus1( uiCode ); |
---|
1014 | READ_UVLC ( uiCode, "num_tile_rows_minus1" ); |
---|
1015 | pcPPS->setNumRowsMinus1( uiCode ); |
---|
1016 | READ_FLAG ( uiCode, "uniform_spacing_flag" ); |
---|
1017 | pcPPS->setUniformSpacingIdr( uiCode ); |
---|
1018 | |
---|
1019 | if( pcPPS->getUniformSpacingIdr() == 0 ) |
---|
1020 | { |
---|
1021 | UInt* columnWidth = (UInt*)malloc(pcPPS->getNumColumnsMinus1()*sizeof(UInt)); |
---|
1022 | for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++) |
---|
1023 | { |
---|
1024 | READ_UVLC( uiCode, "column_width" ); |
---|
1025 | columnWidth[i] = uiCode; |
---|
1026 | } |
---|
1027 | pcPPS->setColumnWidth(columnWidth); |
---|
1028 | free(columnWidth); |
---|
1029 | |
---|
1030 | UInt* rowHeight = (UInt*)malloc(pcPPS->getNumRowsMinus1()*sizeof(UInt)); |
---|
1031 | for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++) |
---|
1032 | { |
---|
1033 | READ_UVLC( uiCode, "row_height" ); |
---|
1034 | rowHeight[i] = uiCode; |
---|
1035 | } |
---|
1036 | pcPPS->setRowHeight(rowHeight); |
---|
1037 | free(rowHeight); |
---|
1038 | } |
---|
1039 | } |
---|
1040 | |
---|
1041 | |
---|
1042 | if(pcPPS->getTileBehaviorControlPresentFlag() == 1) |
---|
1043 | { |
---|
1044 | Int iNumColTilesMinus1 = (pcPPS->getColumnRowInfoPresent() == 1)?(pcPPS->getNumColumnsMinus1()):(pcPPS->getSPS()->getNumColumnsMinus1()); |
---|
1045 | Int iNumRowTilesMinus1 = (pcPPS->getColumnRowInfoPresent() == 1)?(pcPPS->getNumColumnsMinus1()):(pcPPS->getSPS()->getNumRowsMinus1()); |
---|
1046 | pcPPS->setLFCrossTileBoundaryFlag(true); //default |
---|
1047 | |
---|
1048 | if(iNumColTilesMinus1 !=0 || iNumRowTilesMinus1 !=0) |
---|
1049 | { |
---|
1050 | READ_FLAG ( uiCode, "loop_filter_across_tile_flag" ); |
---|
1051 | pcPPS->setLFCrossTileBoundaryFlag( (uiCode == 1)?true:false ); |
---|
1052 | } |
---|
1053 | } |
---|
1054 | } |
---|
1055 | else if(parameterSet->getPrefetchedSPS(pcPPS->getSPSId())->getTilesOrEntropyCodingSyncIdc()==2) |
---|
1056 | { |
---|
1057 | READ_UVLC( uiCode, "num_substreams_minus1" ); pcPPS->setNumSubstreams(uiCode+1); |
---|
1058 | } |
---|
1059 | |
---|
1060 | READ_FLAG( uiCode, "deblocking_filter_control_present_flag" ); |
---|
1061 | pcPPS->setDeblockingFilterControlPresent( uiCode ? true : false); |
---|
1062 | READ_UVLC( uiCode, "log2_parallel_merge_level_minus2"); |
---|
1063 | assert(uiCode == LOG2_PARALLEL_MERGE_LEVEL_MINUS2); |
---|
1064 | pcPPS->setLog2ParallelMergeLevelMinus2 (uiCode); |
---|
1065 | |
---|
1066 | READ_FLAG( uiCode, "pps_extension_flag"); |
---|
1067 | if (uiCode) |
---|
1068 | { |
---|
1069 | while ( xMoreRbspData() ) |
---|
1070 | { |
---|
1071 | READ_FLAG( uiCode, "pps_extension_data_flag"); |
---|
1072 | } |
---|
1073 | } |
---|
1074 | } |
---|
1075 | #if QC_MVHEVC_B0046 |
---|
1076 | Void TDecCavlc::parseVPS(TComVPS* pcVPS) |
---|
1077 | { |
---|
1078 | UInt uiCode; |
---|
1079 | READ_CODE( 4, uiCode, "video_parameter_set_id" ); pcVPS->setVPSId( uiCode ); |
---|
1080 | READ_FLAG( uiCode, "temporal_id_nesting_flag" ); pcVPS->setTemporalNestingFlag( uiCode ? true:false ); |
---|
1081 | READ_CODE( 2, uiCode, "vps_reserved_zero_2bits" ); assert( !uiCode ); |
---|
1082 | READ_CODE( 6, uiCode, "vps_max_layers_minus1" ); pcVPS->setMaxLayers( uiCode + 1 ); |
---|
1083 | READ_CODE( 3, uiCode, "vps_max_sub_layers_minus1" ); pcVPS->setMaxTLayers( uiCode + 1 ); |
---|
1084 | READ_CODE( 12, uiCode, "vps_extension_offset" ); assert( !uiCode ); |
---|
1085 | for(UInt i = 0; i <= pcVPS->getMaxTLayers()-1; i++) |
---|
1086 | { |
---|
1087 | READ_UVLC( uiCode, "max_dec_pic_buffering[i]" ); pcVPS->setMaxDecPicBuffering( uiCode, i ); |
---|
1088 | READ_UVLC( uiCode, "num_reorder_pics[i]" ); pcVPS->setNumReorderPics( uiCode, i ); |
---|
1089 | READ_UVLC( uiCode, "max_latency_increase[i]" ); pcVPS->setMaxLatencyIncrease( uiCode, i ); |
---|
1090 | } |
---|
1091 | READ_UVLC( uiCode, "vps_num_hrd_parameters" ); pcVPS->setNumHRDParameters(uiCode); |
---|
1092 | assert(pcVPS->getNumHRDParameters()==0); |
---|
1093 | for ( UInt i = 0; i < pcVPS->getNumHRDParameters(); i ++) |
---|
1094 | { |
---|
1095 | // if( i > 0 ) |
---|
1096 | //{ |
---|
1097 | // READ_UVLC (0, "op_num_layer_id_values_minus1[ opIdx ]"); |
---|
1098 | // for( i = 0; i <= op_num_layer_id_values_minus1[ opIdx ]; i++ ) |
---|
1099 | // READ_UVLC(0, 6, "op_layer_id[ opIdx ][ i ]"); |
---|
1100 | //} |
---|
1101 | //hrd_parameters( i = = 0, vps_max_sub_layers_minus1 ); |
---|
1102 | } |
---|
1103 | |
---|
1104 | READ_CODE( 1, uiCode, "bit_equal_to_one" ); assert( uiCode ); |
---|
1105 | //vps_extension_byte_alignment_reserved_one_bit |
---|
1106 | xReadVPSAlignOne(); |
---|
1107 | READ_CODE( 8, uiCode, "num_additional_layer_operation_points" ); pcVPS->setNumAddiLayerOperationPoints( uiCode ); |
---|
1108 | READ_CODE( 8, uiCode, "num_additional_profile_level_sets" ); pcVPS->setNumAddiProLevelSets( uiCode); |
---|
1109 | |
---|
1110 | |
---|
1111 | for(UInt i=0; i <= pcVPS->getMaxLayers()-1; i++) |
---|
1112 | { |
---|
1113 | READ_CODE( 4, uiCode, "num_types_zero_4bits[i]" ); assert( !uiCode ); |
---|
1114 | READ_CODE( 4, uiCode, "type_zero_4bits[i]" ); assert( !uiCode ); |
---|
1115 | READ_CODE( 8, uiCode, "view_id[i]" ); pcVPS->setViewId(uiCode, i); |
---|
1116 | // WRITE_SVLC( pcVPS->getViewOrderIdx(i), "view_order_idx[i]" ); |
---|
1117 | if(i) |
---|
1118 | { |
---|
1119 | READ_CODE( 6, uiCode, "num_direct_ref_layers[ i ]" ); pcVPS->setNumDirectRefLayer(uiCode, i); |
---|
1120 | for (UInt j = 0; j< pcVPS->getNumDirectRefLayer(i); j++) |
---|
1121 | { |
---|
1122 | READ_CODE( 6, uiCode, "ref_layer_id[i][j]" ); pcVPS->setDirectRefLayerId (uiCode, i, j); |
---|
1123 | } |
---|
1124 | } |
---|
1125 | } |
---|
1126 | for( UInt i=1; i<=pcVPS->getNumAddiProLevelSets(); i++) |
---|
1127 | { |
---|
1128 | //profile_tier_level |
---|
1129 | } |
---|
1130 | for( UInt i=1; i<= pcVPS->getNumAddiLayerOperationPoints(); i++) |
---|
1131 | { |
---|
1132 | if(pcVPS->getMaxLayers() == 3) |
---|
1133 | { |
---|
1134 | pcVPS->setNumOpLayerIdMinus1((i < pcVPS->getNumAddiLayerOperationPoints() ? 1: 2), (i-1)); |
---|
1135 | } |
---|
1136 | else if( i==1 ) |
---|
1137 | { |
---|
1138 | assert(pcVPS->getNumAddiLayerOperationPoints()==1); |
---|
1139 | pcVPS->setNumOpLayerIdMinus1(pcVPS->getMaxLayers()-1, (i-1)); |
---|
1140 | } |
---|
1141 | READ_UVLC( uiCode, "op_num_layer_id_values_minus1[ opIdx ]" ); pcVPS->setNumOpLayerIdMinus1(uiCode, i-1); |
---|
1142 | for(UInt j = 0; j <= pcVPS->getNumOpLayerIdMinus1(i-1); j++ ) |
---|
1143 | { |
---|
1144 | READ_UVLC( uiCode, "op_layer_id[ opIdx ][ i ]" ); pcVPS->setNumOpLayerId(uiCode, i-1, j); |
---|
1145 | } |
---|
1146 | if (pcVPS->getNumAddiProLevelSets()) |
---|
1147 | { |
---|
1148 | //profile_level_idx[ i ] |
---|
1149 | } |
---|
1150 | } |
---|
1151 | return; |
---|
1152 | } |
---|
1153 | #else |
---|
1154 | #if VIDYO_VPS_INTEGRATION |
---|
1155 | Void TDecCavlc::parseVPS(TComVPS* pcVPS) |
---|
1156 | { |
---|
1157 | UInt uiCode; |
---|
1158 | Int iCode; |
---|
1159 | |
---|
1160 | READ_CODE( 3, uiCode, "max_temporal_layers_minus1" ); pcVPS->setMaxTLayers( uiCode + 1 ); |
---|
1161 | READ_CODE( 5, uiCode, "max_layers_minus1" ); pcVPS->setMaxLayers( uiCode + 1 ); |
---|
1162 | READ_FLAG( uiCode, "temporal_id_nesting_flag" ); pcVPS->setTemporalNestingFlag( uiCode ? true:false ); |
---|
1163 | READ_UVLC( uiCode, "video_parameter_set_id" ); pcVPS->setVPSId( uiCode ); |
---|
1164 | for(UInt i = 0; i <= pcVPS->getMaxTLayers()-1; i++) |
---|
1165 | { |
---|
1166 | READ_UVLC( uiCode, "max_dec_pic_buffering[i]" ); pcVPS->setMaxDecPicBuffering( uiCode, i ); |
---|
1167 | READ_UVLC( uiCode, "num_reorder_pics[i]" ); pcVPS->setNumReorderPics( uiCode, i ); |
---|
1168 | READ_UVLC( uiCode, "max_latency_increase[i]" ); pcVPS->setMaxLatencyIncrease( uiCode, i ); |
---|
1169 | } |
---|
1170 | |
---|
1171 | READ_CODE( 1, uiCode, "bit_equal_to_one" ); assert( uiCode ); |
---|
1172 | |
---|
1173 | if( pcVPS->getMaxLayers() - 1 > 0 ) |
---|
1174 | { |
---|
1175 | READ_UVLC( uiCode, "extension_type" ); pcVPS->setExtensionType( uiCode ); |
---|
1176 | |
---|
1177 | pcVPS->setViewOrderIdx( 0, 0 ); |
---|
1178 | pcVPS->setViewId( 0, 0 ); |
---|
1179 | pcVPS->setDepthFlag( 0, 0 ); |
---|
1180 | for(UInt i = 1; i <= pcVPS->getMaxLayers()-1; i++) |
---|
1181 | { |
---|
1182 | READ_FLAG( uiCode, "dependent_flag[i]" ); pcVPS->setDependentFlag( uiCode ? true:false, i); |
---|
1183 | if( pcVPS->getDependentFlag(i) ) |
---|
1184 | { |
---|
1185 | READ_UVLC( uiCode, "delta_reference_layer_id_minus1[i]" ); pcVPS->setDependentLayer( i - uiCode + 1, i ); |
---|
1186 | if( pcVPS->getExtensionType() == VPS_EXTENSION_TYPE_MULTI_VIEW ) |
---|
1187 | { |
---|
1188 | READ_UVLC( uiCode, "view_id[i]" ); pcVPS->setViewId( uiCode, i ); |
---|
1189 | READ_FLAG( uiCode, "depth_flag[i]" ); pcVPS->setDepthFlag( uiCode ? true:false, i ); |
---|
1190 | READ_SVLC( iCode, "view_order_idx[i]" ); pcVPS->setViewOrderIdx( iCode, i ); |
---|
1191 | } |
---|
1192 | |
---|
1193 | } |
---|
1194 | } |
---|
1195 | #if INTER_VIEW_VECTOR_SCALING_C0115 |
---|
1196 | READ_FLAG( uiCode, "inter_view_vector_scaling_flag" ); pcVPS->setIVScalingFlag( uiCode ? true:false); |
---|
1197 | #endif |
---|
1198 | } |
---|
1199 | |
---|
1200 | READ_FLAG( uiCode, "vps_extension_flag" ); assert(!uiCode); |
---|
1201 | //future extensions go here.. |
---|
1202 | |
---|
1203 | return; |
---|
1204 | } |
---|
1205 | |
---|
1206 | #endif |
---|
1207 | #endif |
---|
1208 | #if HHI_MPI || H3D_QTL |
---|
1209 | Void TDecCavlc::parseSPS(TComSPS* pcSPS, Bool bIsDepth) |
---|
1210 | #else |
---|
1211 | Void TDecCavlc::parseSPS(TComSPS* pcSPS) |
---|
1212 | #endif |
---|
1213 | { |
---|
1214 | #if ENC_DEC_TRACE |
---|
1215 | xTraceSPSHeader (pcSPS); |
---|
1216 | #endif |
---|
1217 | |
---|
1218 | UInt uiCode; |
---|
1219 | #if !QC_MVHEVC_B0046 |
---|
1220 | Int iCode; |
---|
1221 | #endif |
---|
1222 | READ_CODE( 8, uiCode, "profile_idc" ); pcSPS->setProfileIdc( uiCode ); |
---|
1223 | READ_CODE( 8, uiCode, "reserved_zero_8bits" ); |
---|
1224 | READ_CODE( 8, uiCode, "level_idc" ); pcSPS->setLevelIdc( uiCode ); |
---|
1225 | READ_UVLC( uiCode, "seq_parameter_set_id" ); pcSPS->setSPSId( uiCode ); |
---|
1226 | #if VIDYO_VPS_INTEGRATION |
---|
1227 | READ_UVLC( uiCode, "video_parameter_set_id" ); pcSPS->setVPSId( uiCode ); |
---|
1228 | #endif |
---|
1229 | READ_UVLC( uiCode, "chroma_format_idc" ); pcSPS->setChromaFormatIdc( uiCode ); |
---|
1230 | READ_CODE( 3, uiCode, "max_temporal_layers_minus1" ); pcSPS->setMaxTLayers( uiCode+1 ); |
---|
1231 | READ_UVLC ( uiCode, "pic_width_in_luma_samples" ); pcSPS->setPicWidthInLumaSamples ( uiCode ); |
---|
1232 | READ_UVLC ( uiCode, "pic_height_in_luma_samples" ); pcSPS->setPicHeightInLumaSamples( uiCode ); |
---|
1233 | READ_FLAG( uiCode, "pic_cropping_flag"); pcSPS->setPicCroppingFlag ( uiCode ? true : false ); |
---|
1234 | if (uiCode != 0) |
---|
1235 | { |
---|
1236 | READ_UVLC( uiCode, "pic_crop_left_offset" ); pcSPS->setPicCropLeftOffset( uiCode ); |
---|
1237 | READ_UVLC( uiCode, "pic_crop_right_offset" ); pcSPS->setPicCropRightOffset( uiCode ); |
---|
1238 | READ_UVLC( uiCode, "pic_crop_top_offset" ); pcSPS->setPicCropTopOffset( uiCode ); |
---|
1239 | READ_UVLC( uiCode, "pic_crop_bottom_offset" ); pcSPS->setPicCropBottomOffset( uiCode ); |
---|
1240 | } |
---|
1241 | |
---|
1242 | #if FULL_NBIT |
---|
1243 | READ_UVLC( uiCode, "bit_depth_luma_minus8" ); |
---|
1244 | g_uiBitDepth = 8 + uiCode; |
---|
1245 | g_uiBitIncrement = 0; |
---|
1246 | pcSPS->setBitDepth(g_uiBitDepth); |
---|
1247 | pcSPS->setBitIncrement(g_uiBitIncrement); |
---|
1248 | #else |
---|
1249 | READ_UVLC( uiCode, "bit_depth_luma_minus8" ); |
---|
1250 | g_uiBitDepth = 8; |
---|
1251 | g_uiBitIncrement = uiCode; |
---|
1252 | pcSPS->setBitDepth(g_uiBitDepth); |
---|
1253 | pcSPS->setBitIncrement(g_uiBitIncrement); |
---|
1254 | #endif |
---|
1255 | |
---|
1256 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
1257 | g_iDeltaDCsQuantOffset = g_uiBitIncrement - 2; |
---|
1258 | #endif |
---|
1259 | |
---|
1260 | pcSPS->setQpBDOffsetY( (Int) (6*uiCode) ); |
---|
1261 | |
---|
1262 | g_uiBASE_MAX = ((1<<(g_uiBitDepth))-1); |
---|
1263 | |
---|
1264 | #if IBDI_NOCLIP_RANGE |
---|
1265 | g_uiIBDI_MAX = g_uiBASE_MAX << g_uiBitIncrement; |
---|
1266 | #else |
---|
1267 | g_uiIBDI_MAX = ((1<<(g_uiBitDepth+g_uiBitIncrement))-1); |
---|
1268 | #endif |
---|
1269 | READ_UVLC( uiCode, "bit_depth_chroma_minus8" ); |
---|
1270 | pcSPS->setQpBDOffsetC( (Int) (6*uiCode) ); |
---|
1271 | |
---|
1272 | READ_FLAG( uiCode, "pcm_enabled_flag" ); pcSPS->setUsePCM( uiCode ? true : false ); |
---|
1273 | |
---|
1274 | if( pcSPS->getUsePCM() ) |
---|
1275 | { |
---|
1276 | READ_CODE( 4, uiCode, "pcm_bit_depth_luma_minus1" ); pcSPS->setPCMBitDepthLuma ( 1 + uiCode ); |
---|
1277 | READ_CODE( 4, uiCode, "pcm_bit_depth_chroma_minus1" ); pcSPS->setPCMBitDepthChroma ( 1 + uiCode ); |
---|
1278 | } |
---|
1279 | |
---|
1280 | #if LOSSLESS_CODING |
---|
1281 | READ_FLAG( uiCode, "qpprime_y_zero_transquant_bypass_flag" ); pcSPS->setUseLossless ( uiCode ? true : false ); |
---|
1282 | #endif |
---|
1283 | |
---|
1284 | READ_UVLC( uiCode, "log2_max_pic_order_cnt_lsb_minus4" ); pcSPS->setBitsForPOC( 4 + uiCode ); |
---|
1285 | for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++) |
---|
1286 | { |
---|
1287 | READ_UVLC ( uiCode, "max_dec_pic_buffering"); |
---|
1288 | pcSPS->setMaxDecPicBuffering( uiCode, i); |
---|
1289 | READ_UVLC ( uiCode, "num_reorder_pics" ); |
---|
1290 | pcSPS->setNumReorderPics(uiCode, i); |
---|
1291 | READ_UVLC ( uiCode, "max_latency_increase"); |
---|
1292 | pcSPS->setMaxLatencyIncrease( uiCode, i ); |
---|
1293 | } |
---|
1294 | |
---|
1295 | READ_FLAG( uiCode, "restricted_ref_pic_lists_flag" ); |
---|
1296 | pcSPS->setRestrictedRefPicListsFlag( uiCode ); |
---|
1297 | if( pcSPS->getRestrictedRefPicListsFlag() ) |
---|
1298 | { |
---|
1299 | READ_FLAG( uiCode, "lists_modification_present_flag" ); |
---|
1300 | pcSPS->setListsModificationPresentFlag(uiCode); |
---|
1301 | } |
---|
1302 | else |
---|
1303 | { |
---|
1304 | pcSPS->setListsModificationPresentFlag(true); |
---|
1305 | } |
---|
1306 | READ_UVLC( uiCode, "log2_min_coding_block_size_minus3" ); |
---|
1307 | UInt log2MinCUSize = uiCode + 3; |
---|
1308 | READ_UVLC( uiCode, "log2_diff_max_min_coding_block_size" ); |
---|
1309 | UInt uiMaxCUDepthCorrect = uiCode; |
---|
1310 | pcSPS->setMaxCUWidth ( 1<<(log2MinCUSize + uiMaxCUDepthCorrect) ); g_uiMaxCUWidth = 1<<(log2MinCUSize + uiMaxCUDepthCorrect); |
---|
1311 | pcSPS->setMaxCUHeight ( 1<<(log2MinCUSize + uiMaxCUDepthCorrect) ); g_uiMaxCUHeight = 1<<(log2MinCUSize + uiMaxCUDepthCorrect); |
---|
1312 | READ_UVLC( uiCode, "log2_min_transform_block_size_minus2" ); pcSPS->setQuadtreeTULog2MinSize( uiCode + 2 ); |
---|
1313 | |
---|
1314 | READ_UVLC( uiCode, "log2_diff_max_min_transform_block_size" ); pcSPS->setQuadtreeTULog2MaxSize( uiCode + pcSPS->getQuadtreeTULog2MinSize() ); |
---|
1315 | pcSPS->setMaxTrSize( 1<<(uiCode + pcSPS->getQuadtreeTULog2MinSize()) ); |
---|
1316 | |
---|
1317 | if(log2MinCUSize == 3) |
---|
1318 | { |
---|
1319 | xReadFlag( uiCode ); pcSPS->setDisInter4x4( uiCode ? true : false ); |
---|
1320 | } |
---|
1321 | |
---|
1322 | if( pcSPS->getUsePCM() ) |
---|
1323 | { |
---|
1324 | READ_UVLC( uiCode, "log2_min_pcm_coding_block_size_minus3" ); pcSPS->setPCMLog2MinSize (uiCode+3); |
---|
1325 | READ_UVLC( uiCode, "log2_diff_max_min_pcm_coding_block_size" ); pcSPS->setPCMLog2MaxSize ( uiCode+pcSPS->getPCMLog2MinSize() ); |
---|
1326 | } |
---|
1327 | |
---|
1328 | READ_UVLC( uiCode, "max_transform_hierarchy_depth_inter" ); pcSPS->setQuadtreeTUMaxDepthInter( uiCode+1 ); |
---|
1329 | READ_UVLC( uiCode, "max_transform_hierarchy_depth_intra" ); pcSPS->setQuadtreeTUMaxDepthIntra( uiCode+1 ); |
---|
1330 | g_uiAddCUDepth = 0; |
---|
1331 | while( ( pcSPS->getMaxCUWidth() >> uiMaxCUDepthCorrect ) > ( 1 << ( pcSPS->getQuadtreeTULog2MinSize() + g_uiAddCUDepth ) ) ) |
---|
1332 | { |
---|
1333 | g_uiAddCUDepth++; |
---|
1334 | } |
---|
1335 | pcSPS->setMaxCUDepth( uiMaxCUDepthCorrect+g_uiAddCUDepth ); |
---|
1336 | g_uiMaxCUDepth = uiMaxCUDepthCorrect+g_uiAddCUDepth; |
---|
1337 | // BB: these parameters may be removed completly and replaced by the fixed values |
---|
1338 | pcSPS->setMinTrDepth( 0 ); |
---|
1339 | pcSPS->setMaxTrDepth( 1 ); |
---|
1340 | READ_FLAG( uiCode, "scaling_list_enabled_flag" ); pcSPS->setScalingListFlag ( uiCode ); |
---|
1341 | READ_FLAG( uiCode, "chroma_pred_from_luma_enabled_flag" ); pcSPS->setUseLMChroma ( uiCode ? true : false ); |
---|
1342 | READ_FLAG( uiCode, "deblocking_filter_in_aps_enabled_flag" ); pcSPS->setUseDF ( uiCode ? true : false ); |
---|
1343 | READ_FLAG( uiCode, "loop_filter_across_slice_flag" ); pcSPS->setLFCrossSliceBoundaryFlag( uiCode ? true : false); |
---|
1344 | READ_FLAG( uiCode, "asymmetric_motion_partitions_enabled_flag" ); pcSPS->setUseAMP( uiCode ); |
---|
1345 | READ_FLAG( uiCode, "non_square_quadtree_enabled_flag" ); pcSPS->setUseNSQT( uiCode ); |
---|
1346 | READ_FLAG( uiCode, "sample_adaptive_offset_enabled_flag" ); pcSPS->setUseSAO ( uiCode ? true : false ); |
---|
1347 | READ_FLAG( uiCode, "adaptive_loop_filter_enabled_flag" ); pcSPS->setUseALF ( uiCode ? true : false ); |
---|
1348 | if(pcSPS->getUseALF()) |
---|
1349 | { |
---|
1350 | READ_FLAG( uiCode, "alf_coef_in_slice_flag" ); pcSPS->setUseALFCoefInSlice ( uiCode ? true : false ); |
---|
1351 | } |
---|
1352 | if( pcSPS->getUsePCM() ) |
---|
1353 | { |
---|
1354 | READ_FLAG( uiCode, "pcm_loop_filter_disable_flag" ); pcSPS->setPCMFilterDisableFlag ( uiCode ? true : false ); |
---|
1355 | } |
---|
1356 | |
---|
1357 | READ_FLAG( uiCode, "temporal_id_nesting_flag" ); pcSPS->setTemporalIdNestingFlag ( uiCode > 0 ? true : false ); |
---|
1358 | |
---|
1359 | |
---|
1360 | TComRPSList* rpsList = pcSPS->getRPSList(); |
---|
1361 | TComReferencePictureSet* rps; |
---|
1362 | |
---|
1363 | READ_UVLC( uiCode, "num_short_term_ref_pic_sets" ); |
---|
1364 | rpsList->create(uiCode); |
---|
1365 | |
---|
1366 | for(UInt i=0; i< rpsList->getNumberOfReferencePictureSets(); i++) |
---|
1367 | { |
---|
1368 | rps = rpsList->getReferencePictureSet(i); |
---|
1369 | parseShortTermRefPicSet(pcSPS,rps,i); |
---|
1370 | } |
---|
1371 | READ_FLAG( uiCode, "long_term_ref_pics_present_flag" ); pcSPS->setLongTermRefsPresent(uiCode); |
---|
1372 | |
---|
1373 | // AMVP mode for each depth (AM_NONE or AM_EXPL) |
---|
1374 | for (Int i = 0; i < pcSPS->getMaxCUDepth(); i++) |
---|
1375 | { |
---|
1376 | xReadFlag( uiCode ); |
---|
1377 | pcSPS->setAMVPMode( i, (AMVP_MODE)uiCode ); |
---|
1378 | } |
---|
1379 | |
---|
1380 | READ_CODE(2, uiCode, "tiles_or_entropy_coding_sync_idc"); pcSPS->setTilesOrEntropyCodingSyncIdc(uiCode); |
---|
1381 | |
---|
1382 | if(pcSPS->getTilesOrEntropyCodingSyncIdc() == 1) |
---|
1383 | { |
---|
1384 | READ_UVLC ( uiCode, "num_tile_columns_minus1" ); |
---|
1385 | pcSPS->setNumColumnsMinus1( uiCode ); |
---|
1386 | READ_UVLC ( uiCode, "num_tile_rows_minus1" ); |
---|
1387 | pcSPS->setNumRowsMinus1( uiCode ); |
---|
1388 | READ_FLAG ( uiCode, "uniform_spacing_flag" ); |
---|
1389 | pcSPS->setUniformSpacingIdr( uiCode ); |
---|
1390 | if( pcSPS->getUniformSpacingIdr() == 0 ) |
---|
1391 | { |
---|
1392 | UInt* columnWidth = (UInt*)malloc(pcSPS->getNumColumnsMinus1()*sizeof(UInt)); |
---|
1393 | for(UInt i=0; i<pcSPS->getNumColumnsMinus1(); i++) |
---|
1394 | { |
---|
1395 | READ_UVLC( uiCode, "column_width" ); |
---|
1396 | columnWidth[i] = uiCode; |
---|
1397 | } |
---|
1398 | pcSPS->setColumnWidth(columnWidth); |
---|
1399 | free(columnWidth); |
---|
1400 | |
---|
1401 | UInt* rowHeight = (UInt*)malloc(pcSPS->getNumRowsMinus1()*sizeof(UInt)); |
---|
1402 | for(UInt i=0; i<pcSPS->getNumRowsMinus1(); i++) |
---|
1403 | { |
---|
1404 | READ_UVLC( uiCode, "row_height" ); |
---|
1405 | rowHeight[i] = uiCode; |
---|
1406 | } |
---|
1407 | pcSPS->setRowHeight(rowHeight); |
---|
1408 | free(rowHeight); |
---|
1409 | } |
---|
1410 | pcSPS->setLFCrossTileBoundaryFlag(true); //default |
---|
1411 | |
---|
1412 | if( pcSPS->getNumColumnsMinus1() !=0 || pcSPS->getNumRowsMinus1() != 0) |
---|
1413 | { |
---|
1414 | READ_FLAG ( uiCode, "loop_filter_across_tile_flag" ); |
---|
1415 | pcSPS->setLFCrossTileBoundaryFlag( (uiCode==1)?true:false); |
---|
1416 | } |
---|
1417 | } |
---|
1418 | READ_FLAG( uiCode, "sps_extension_flag"); |
---|
1419 | #if !QC_MVHEVC_B0046 |
---|
1420 | if(uiCode) |
---|
1421 | { |
---|
1422 | READ_FLAG( uiCode, "interview_refs_present_flag"); |
---|
1423 | if(uiCode) |
---|
1424 | { |
---|
1425 | READ_UVLC( uiCode, "num_usable_interview_refs_minus1" ); |
---|
1426 | pcSPS->setNumberOfUsableInterViewRefs( uiCode + 1 ); |
---|
1427 | |
---|
1428 | Int prev = 0; |
---|
1429 | for( Int j = 0 ; j < pcSPS->getNumberOfUsableInterViewRefs(); j++ ) |
---|
1430 | { |
---|
1431 | READ_UVLC(uiCode, "delta_usable_interview_ref_minus1"); |
---|
1432 | pcSPS->setUsableInterViewRef( j, (prev - uiCode - 1) ); |
---|
1433 | prev = pcSPS->getUsableInterViewRef( j ); |
---|
1434 | } |
---|
1435 | } |
---|
1436 | |
---|
1437 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
1438 | READ_FLAG( uiCode, "enable_dmm_flag" ); |
---|
1439 | pcSPS->setUseDMM( uiCode ); |
---|
1440 | #endif |
---|
1441 | |
---|
1442 | #if HHI_MPI |
---|
1443 | if( bIsDepth ) |
---|
1444 | { |
---|
1445 | READ_FLAG( uiCode, "use_mvi_flag" ); |
---|
1446 | pcSPS->setUseMVI( uiCode ); |
---|
1447 | } |
---|
1448 | #endif |
---|
1449 | #if H3D_QTL |
---|
1450 | if( bIsDepth ) |
---|
1451 | { |
---|
1452 | READ_FLAG( uiCode, "use_qtlpc_flag" ); |
---|
1453 | pcSPS->setUseQTLPC( uiCode ); |
---|
1454 | } |
---|
1455 | #endif |
---|
1456 | |
---|
1457 | #if RWTH_SDC_DLT_B0036 |
---|
1458 | if( bIsDepth ) |
---|
1459 | { |
---|
1460 | READ_FLAG( uiCode, "use_dlt_flag" ); |
---|
1461 | pcSPS->setUseDLT( uiCode ); |
---|
1462 | if( pcSPS->getUseDLT() ) |
---|
1463 | { |
---|
1464 | // decode mapping |
---|
1465 | UInt uiNumDepthValues; |
---|
1466 | // parse number of values in DLT |
---|
1467 | xReadUvlc( uiNumDepthValues ); |
---|
1468 | |
---|
1469 | // parse actual DLT values |
---|
1470 | UInt* auiIdx2DepthValue = (UInt*) calloc(uiNumDepthValues, sizeof(UInt)); |
---|
1471 | for(UInt d=0; d<uiNumDepthValues; d++) |
---|
1472 | { |
---|
1473 | xReadUvlc( uiCode ); |
---|
1474 | auiIdx2DepthValue[d] = uiCode; |
---|
1475 | } |
---|
1476 | |
---|
1477 | pcSPS->setDepthLUTs(auiIdx2DepthValue, uiNumDepthValues); |
---|
1478 | |
---|
1479 | // clean memory |
---|
1480 | free(auiIdx2DepthValue); |
---|
1481 | } |
---|
1482 | else |
---|
1483 | pcSPS->setDepthLUTs(); |
---|
1484 | } |
---|
1485 | #endif |
---|
1486 | |
---|
1487 | READ_FLAG( uiCode, "base_view_flag" ); |
---|
1488 | if( uiCode ) |
---|
1489 | { // baseview SPS -> set standard values |
---|
1490 | pcSPS->initMultiviewSPS ( 0 ); |
---|
1491 | #if DEPTH_MAP_GENERATION |
---|
1492 | pcSPS->setPredDepthMapGeneration( 0, false ); |
---|
1493 | #endif |
---|
1494 | #if H3D_IVRP |
---|
1495 | pcSPS->setMultiviewResPredMode ( 0 ); |
---|
1496 | #endif |
---|
1497 | } |
---|
1498 | else |
---|
1499 | { |
---|
1500 | READ_FLAG( uiCode, "depth_flag" ); |
---|
1501 | if( uiCode ) |
---|
1502 | { |
---|
1503 | #if FCO_FIX_SPS_CHANGE |
---|
1504 | UInt uiViewId, uiCamParPrecision; |
---|
1505 | Int iVOI; |
---|
1506 | Bool bCamParSlice; |
---|
1507 | READ_UVLC( uiCode, "view_id" ); |
---|
1508 | READ_SVLC( iCode, "view_order_idx" ); |
---|
1509 | uiViewId = uiCode; |
---|
1510 | iVOI = iCode; |
---|
1511 | |
---|
1512 | if ( uiViewId == 0 ) |
---|
1513 | { |
---|
1514 | pcSPS->initMultiviewSPSDepth ( uiViewId, iVOI ); |
---|
1515 | } |
---|
1516 | else |
---|
1517 | { |
---|
1518 | READ_UVLC( uiCamParPrecision, "camera_parameter_precision" ); |
---|
1519 | READ_FLAG( uiCode, "camera_parameter_in_slice_header" ); bCamParSlice = ( uiCode == 1 ); |
---|
1520 | if( !bCamParSlice ) |
---|
1521 | { |
---|
1522 | for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ ) |
---|
1523 | { |
---|
1524 | READ_SVLC( iCode, "coded_scale" ); m_aaiTempScale [ uiBaseId ][ uiViewId ] = iCode; |
---|
1525 | READ_SVLC( iCode, "coded_offset" ); m_aaiTempOffset[ uiBaseId ][ uiViewId ] = iCode; |
---|
1526 | READ_SVLC( iCode, "inverse_coded_scale_plus_coded_scale" ); m_aaiTempScale [ uiViewId ][ uiBaseId ] = iCode - m_aaiTempScale [ uiBaseId ][ uiViewId ]; |
---|
1527 | READ_SVLC( iCode, "inverse_coded_offset_plus_coded_offset" ); m_aaiTempOffset[ uiViewId ][ uiBaseId ] = iCode - m_aaiTempOffset[ uiBaseId ][ uiViewId ]; |
---|
1528 | } |
---|
1529 | } |
---|
1530 | pcSPS->initMultiviewSPSDepth( uiViewId, iVOI, uiCamParPrecision, bCamParSlice, m_aaiTempScale, m_aaiTempOffset ); |
---|
1531 | |
---|
1532 | } |
---|
1533 | #else |
---|
1534 | READ_UVLC( uiCode, "view_id" ); |
---|
1535 | READ_SVLC( iCode, "view_order_idx" ); |
---|
1536 | pcSPS->initMultiviewSPSDepth ( uiCode, iCode ); |
---|
1537 | #endif |
---|
1538 | #if DEPTH_MAP_GENERATION |
---|
1539 | #if FCO_FIX_SPS_CHANGE |
---|
1540 | pcSPS->setPredDepthMapGeneration( uiViewId, true ); |
---|
1541 | #else |
---|
1542 | pcSPS->setPredDepthMapGeneration( uiCode, true ); |
---|
1543 | #endif |
---|
1544 | #endif |
---|
1545 | #if H3D_IVRP |
---|
1546 | pcSPS->setMultiviewResPredMode ( 0 ); |
---|
1547 | #endif |
---|
1548 | } |
---|
1549 | else |
---|
1550 | { |
---|
1551 | UInt uiViewId, uiCamParPrecision; |
---|
1552 | Int iVOI; |
---|
1553 | Bool bCamParSlice; |
---|
1554 | READ_UVLC( uiViewId, "view_id" ); uiViewId++; |
---|
1555 | READ_SVLC( iVOI, "view_order_idx" ); |
---|
1556 | READ_UVLC( uiCamParPrecision, "camera_parameter_precision" ); |
---|
1557 | READ_FLAG( uiCode, "camera_parameter_in_slice_header" ); bCamParSlice = ( uiCode == 1 ); |
---|
1558 | if( !bCamParSlice ) |
---|
1559 | { |
---|
1560 | for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ ) |
---|
1561 | { |
---|
1562 | READ_SVLC( iCode, "coded_scale" ); m_aaiTempScale [ uiBaseId ][ uiViewId ] = iCode; |
---|
1563 | READ_SVLC( iCode, "coded_offset" ); m_aaiTempOffset[ uiBaseId ][ uiViewId ] = iCode; |
---|
1564 | READ_SVLC( iCode, "inverse_coded_scale_plus_coded_scale" ); m_aaiTempScale [ uiViewId ][ uiBaseId ] = iCode - m_aaiTempScale [ uiBaseId ][ uiViewId ]; |
---|
1565 | READ_SVLC( iCode, "inverse_coded_offset_plus_coded_offset" ); m_aaiTempOffset[ uiViewId ][ uiBaseId ] = iCode - m_aaiTempOffset[ uiBaseId ][ uiViewId ]; |
---|
1566 | } |
---|
1567 | } |
---|
1568 | pcSPS->initMultiviewSPS( uiViewId, iVOI, uiCamParPrecision, bCamParSlice, m_aaiTempScale, m_aaiTempOffset ); |
---|
1569 | |
---|
1570 | #if DEPTH_MAP_GENERATION |
---|
1571 | UInt uiPredDepthMapGeneration = 0, uiPdmPrecision = 0; |
---|
1572 | #if H3D_IVMP |
---|
1573 | UInt uiMultiviewMvPredMode = 0; |
---|
1574 | #endif |
---|
1575 | #if H3D_IVRP |
---|
1576 | UInt uiMultiviewResPredMode = 0; |
---|
1577 | #endif |
---|
1578 | READ_UVLC( uiPredDepthMapGeneration, "Pdm_generation" ); |
---|
1579 | if( uiPredDepthMapGeneration ) |
---|
1580 | { |
---|
1581 | READ_UVLC( uiPdmPrecision, "Pdm_precision" ); |
---|
1582 | for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ ) |
---|
1583 | { |
---|
1584 | READ_SVLC( iCode, "Pdm_scale_nom_delta" ); m_aaiTempPdmScaleNomDelta[ uiViewId ][ uiBaseId ] = iCode; |
---|
1585 | READ_SVLC( iCode, "Pdm_offset" ); m_aaiTempPdmOffset [ uiViewId ][ uiBaseId ] = iCode; |
---|
1586 | } |
---|
1587 | #if H3D_IVMP |
---|
1588 | READ_UVLC( uiMultiviewMvPredMode, "multi_view_mv_pred_mode" ); |
---|
1589 | #endif |
---|
1590 | #if H3D_IVRP |
---|
1591 | READ_FLAG( uiMultiviewResPredMode, "multi_view_residual_pred_mode" ); |
---|
1592 | #endif |
---|
1593 | } |
---|
1594 | #if H3D_IVMP |
---|
1595 | pcSPS->setPredDepthMapGeneration( uiViewId, false, uiPredDepthMapGeneration, uiMultiviewMvPredMode, uiPdmPrecision, m_aaiTempPdmScaleNomDelta, m_aaiTempPdmOffset ); |
---|
1596 | #else |
---|
1597 | pcSPS->setPredDepthMapGeneration( uiViewId, false, uiPredDepthMapGeneration, 0, uiPdmPrecision, m_aaiTempPdmScaleNomDelta, m_aaiTempPdmOffset ); |
---|
1598 | #endif |
---|
1599 | #endif |
---|
1600 | #if H3D_IVRP |
---|
1601 | pcSPS->setMultiviewResPredMode ( uiMultiviewResPredMode ); |
---|
1602 | #endif |
---|
1603 | } |
---|
1604 | } |
---|
1605 | READ_FLAG( uiCode, "sps_extension2_flag"); |
---|
1606 | if (uiCode) |
---|
1607 | { |
---|
1608 | while ( xMoreRbspData() ) |
---|
1609 | { |
---|
1610 | READ_FLAG( uiCode, "sps_extension2_data_flag"); |
---|
1611 | } |
---|
1612 | } |
---|
1613 | } |
---|
1614 | #endif |
---|
1615 | } |
---|
1616 | |
---|
1617 | Void TDecCavlc::readTileMarker ( UInt& uiTileIdx, UInt uiBitsUsed ) |
---|
1618 | { |
---|
1619 | xReadCode ( uiBitsUsed, uiTileIdx ); |
---|
1620 | } |
---|
1621 | |
---|
1622 | #if MTK_DEPTH_MERGE_TEXTURE_CANDIDATE_C0137 |
---|
1623 | Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet, bool isDepth) |
---|
1624 | #else |
---|
1625 | Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet) |
---|
1626 | #endif |
---|
1627 | { |
---|
1628 | UInt uiCode; |
---|
1629 | Int iCode; |
---|
1630 | |
---|
1631 | #if ENC_DEC_TRACE |
---|
1632 | xTraceSliceHeader(rpcSlice); |
---|
1633 | #endif |
---|
1634 | Int numCUs = ((rpcSlice->getSPS()->getPicWidthInLumaSamples()+rpcSlice->getSPS()->getMaxCUWidth()-1)/rpcSlice->getSPS()->getMaxCUWidth())*((rpcSlice->getSPS()->getPicHeightInLumaSamples()+rpcSlice->getSPS()->getMaxCUHeight()-1)/rpcSlice->getSPS()->getMaxCUHeight()); |
---|
1635 | Int maxParts = (1<<(rpcSlice->getSPS()->getMaxCUDepth()<<1)); |
---|
1636 | Int numParts = (1<<(rpcSlice->getPPS()->getSliceGranularity()<<1)); |
---|
1637 | UInt lCUAddress = 0; |
---|
1638 | Int reqBitsOuter = 0; |
---|
1639 | while(numCUs>(1<<reqBitsOuter)) |
---|
1640 | { |
---|
1641 | reqBitsOuter++; |
---|
1642 | } |
---|
1643 | Int reqBitsInner = 0; |
---|
1644 | while((numParts)>(1<<reqBitsInner)) |
---|
1645 | { |
---|
1646 | reqBitsInner++; |
---|
1647 | } |
---|
1648 | |
---|
1649 | READ_FLAG( uiCode, "first_slice_in_pic_flag" ); |
---|
1650 | UInt address; |
---|
1651 | UInt innerAddress = 0; |
---|
1652 | |
---|
1653 | #if LGE_ILLUCOMP_B0045 |
---|
1654 | // IC flag is on only first_slice_in_pic |
---|
1655 | if (uiCode) |
---|
1656 | { |
---|
1657 | UInt uiCodeTmp = 0; |
---|
1658 | if ( rpcSlice->getSPS()->getViewId() |
---|
1659 | #if !LGE_ILLUCOMP_DEPTH_C0046 |
---|
1660 | && !rpcSlice->getSPS()->isDepth() |
---|
1661 | #endif |
---|
1662 | ) |
---|
1663 | { |
---|
1664 | READ_FLAG (uiCodeTmp, "applying IC flag"); |
---|
1665 | } |
---|
1666 | rpcSlice->setApplyIC(uiCodeTmp); |
---|
1667 | } |
---|
1668 | #endif |
---|
1669 | |
---|
1670 | if(!uiCode) |
---|
1671 | { |
---|
1672 | READ_CODE( reqBitsOuter+reqBitsInner, address, "slice_address" ); |
---|
1673 | lCUAddress = address >> reqBitsInner; |
---|
1674 | innerAddress = address - (lCUAddress<<reqBitsInner); |
---|
1675 | } |
---|
1676 | //set uiCode to equal slice start address (or entropy slice start address) |
---|
1677 | uiCode=(maxParts*lCUAddress)+(innerAddress*(maxParts>>(rpcSlice->getPPS()->getSliceGranularity()<<1))); |
---|
1678 | |
---|
1679 | rpcSlice->setEntropySliceCurStartCUAddr( uiCode ); |
---|
1680 | rpcSlice->setEntropySliceCurEndCUAddr(numCUs*maxParts); |
---|
1681 | |
---|
1682 | // slice_type |
---|
1683 | READ_UVLC ( uiCode, "slice_type" ); rpcSlice->setSliceType((SliceType)uiCode); |
---|
1684 | // lightweight_slice_flag |
---|
1685 | READ_FLAG( uiCode, "entropy_slice_flag" ); |
---|
1686 | Bool bEntropySlice = uiCode ? true : false; |
---|
1687 | |
---|
1688 | if (bEntropySlice) |
---|
1689 | { |
---|
1690 | rpcSlice->setNextSlice ( false ); |
---|
1691 | rpcSlice->setNextEntropySlice ( true ); |
---|
1692 | } |
---|
1693 | else |
---|
1694 | { |
---|
1695 | rpcSlice->setNextSlice ( true ); |
---|
1696 | rpcSlice->setNextEntropySlice ( false ); |
---|
1697 | |
---|
1698 | uiCode=(maxParts*lCUAddress)+(innerAddress*(maxParts>>(rpcSlice->getPPS()->getSliceGranularity()<<1))); |
---|
1699 | rpcSlice->setSliceCurStartCUAddr(uiCode); |
---|
1700 | rpcSlice->setSliceCurEndCUAddr(numCUs*maxParts); |
---|
1701 | } |
---|
1702 | TComPPS* pps = NULL; |
---|
1703 | TComSPS* sps = NULL; |
---|
1704 | |
---|
1705 | if (!bEntropySlice) |
---|
1706 | { |
---|
1707 | READ_UVLC ( uiCode, "pic_parameter_set_id" ); rpcSlice->setPPSId(uiCode); |
---|
1708 | pps = parameterSetManager->getPrefetchedPPS(uiCode); |
---|
1709 | sps = parameterSetManager->getPrefetchedSPS(pps->getSPSId()); |
---|
1710 | rpcSlice->setSPS(sps); |
---|
1711 | rpcSlice->setPPS(pps); |
---|
1712 | if( pps->getOutputFlagPresentFlag() ) |
---|
1713 | { |
---|
1714 | READ_FLAG( uiCode, "pic_output_flag" ); |
---|
1715 | rpcSlice->setPicOutputFlag( uiCode ? true : false ); |
---|
1716 | } |
---|
1717 | else |
---|
1718 | { |
---|
1719 | rpcSlice->setPicOutputFlag( true ); |
---|
1720 | } |
---|
1721 | #if QC_REM_IDV_B0046 |
---|
1722 | #if !QC_MVHEVC_B0046 |
---|
1723 | if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR && rpcSlice->getSPS()->getViewId() == 0) |
---|
1724 | #else |
---|
1725 | if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR && rpcSlice->getViewId() == 0) |
---|
1726 | #endif |
---|
1727 | #else |
---|
1728 | if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR) |
---|
1729 | #endif |
---|
1730 | { |
---|
1731 | READ_UVLC( uiCode, "idr_pic_id" ); //ignored |
---|
1732 | READ_FLAG( uiCode, "no_output_of_prior_pics_flag" ); //ignored |
---|
1733 | rpcSlice->setPOC(0); |
---|
1734 | TComReferencePictureSet* rps = rpcSlice->getLocalRPS(); |
---|
1735 | rps->setNumberOfNegativePictures(0); |
---|
1736 | rps->setNumberOfPositivePictures(0); |
---|
1737 | rps->setNumberOfLongtermPictures(0); |
---|
1738 | rps->setNumberOfPictures(0); |
---|
1739 | rpcSlice->setRPS(rps); |
---|
1740 | } |
---|
1741 | else |
---|
1742 | { |
---|
1743 | READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb"); |
---|
1744 | Int iPOClsb = uiCode; |
---|
1745 | Int iPrevPOC = rpcSlice->getPrevPOC(); |
---|
1746 | Int iMaxPOClsb = 1<< sps->getBitsForPOC(); |
---|
1747 | Int iPrevPOClsb = iPrevPOC%iMaxPOClsb; |
---|
1748 | Int iPrevPOCmsb = iPrevPOC-iPrevPOClsb; |
---|
1749 | Int iPOCmsb; |
---|
1750 | if( ( iPOClsb < iPrevPOClsb ) && ( ( iPrevPOClsb - iPOClsb ) >= ( iMaxPOClsb / 2 ) ) ) |
---|
1751 | { |
---|
1752 | iPOCmsb = iPrevPOCmsb + iMaxPOClsb; |
---|
1753 | } |
---|
1754 | else if( (iPOClsb > iPrevPOClsb ) && ( (iPOClsb - iPrevPOClsb ) > ( iMaxPOClsb / 2 ) ) ) |
---|
1755 | { |
---|
1756 | iPOCmsb = iPrevPOCmsb - iMaxPOClsb; |
---|
1757 | } |
---|
1758 | else |
---|
1759 | { |
---|
1760 | iPOCmsb = iPrevPOCmsb; |
---|
1761 | } |
---|
1762 | rpcSlice->setPOC( iPOCmsb+iPOClsb ); |
---|
1763 | #if QC_REM_IDV_B0046 |
---|
1764 | #if !QC_MVHEVC_B0046 |
---|
1765 | if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR && rpcSlice->getSPS()->getViewId() && rpcSlice->getPOC() == 0 ) |
---|
1766 | #else |
---|
1767 | if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR && rpcSlice->getViewId() && rpcSlice->getPOC() == 0 ) |
---|
1768 | #endif |
---|
1769 | #else |
---|
1770 | if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDV && rpcSlice->getPOC() == 0 ) |
---|
1771 | #endif |
---|
1772 | { |
---|
1773 | TComReferencePictureSet* rps = rpcSlice->getLocalRPS(); |
---|
1774 | rps->setNumberOfNegativePictures(0); |
---|
1775 | rps->setNumberOfPositivePictures(0); |
---|
1776 | rps->setNumberOfLongtermPictures(0); |
---|
1777 | rps->setNumberOfPictures(0); |
---|
1778 | rpcSlice->setRPS(rps); |
---|
1779 | } |
---|
1780 | else |
---|
1781 | { |
---|
1782 | TComReferencePictureSet* rps; |
---|
1783 | READ_FLAG( uiCode, "short_term_ref_pic_set_sps_flag" ); |
---|
1784 | if(uiCode == 0) // use short-term reference picture set explicitly signalled in slice header |
---|
1785 | { |
---|
1786 | rps = rpcSlice->getLocalRPS(); |
---|
1787 | parseShortTermRefPicSet(sps,rps, sps->getRPSList()->getNumberOfReferencePictureSets()); |
---|
1788 | rpcSlice->setRPS(rps); |
---|
1789 | } |
---|
1790 | else // use reference to short-term reference picture set in PPS |
---|
1791 | { |
---|
1792 | READ_UVLC( uiCode, "short_term_ref_pic_set_idx"); rpcSlice->setRPS(sps->getRPSList()->getReferencePictureSet(uiCode)); |
---|
1793 | rps = rpcSlice->getRPS(); |
---|
1794 | } |
---|
1795 | if(sps->getLongTermRefsPresent()) |
---|
1796 | { |
---|
1797 | Int offset = rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); |
---|
1798 | READ_UVLC( uiCode, "num_long_term_pics"); rps->setNumberOfLongtermPictures(uiCode); |
---|
1799 | Int prev = 0; |
---|
1800 | Int prevMsb=0; |
---|
1801 | Int prevDeltaPocLt=0; |
---|
1802 | for(Int j=rps->getNumberOfLongtermPictures()+offset-1 ; j > offset-1; j--) |
---|
1803 | { |
---|
1804 | READ_UVLC(uiCode,"delta_poc_lsb_lt"); |
---|
1805 | prev += uiCode; |
---|
1806 | |
---|
1807 | READ_FLAG(uiCode,"delta_poc_msb_present_flag"); |
---|
1808 | Int decDeltaPOCMsbPresent=uiCode; |
---|
1809 | |
---|
1810 | if(decDeltaPOCMsbPresent==1) |
---|
1811 | { |
---|
1812 | READ_UVLC(uiCode, "delta_poc_msb_cycle_lt_minus1"); |
---|
1813 | if( (j==(rps->getNumberOfLongtermPictures()+offset-1)) || (prev!=prevDeltaPocLt) ) |
---|
1814 | { |
---|
1815 | prevMsb=(1+uiCode); |
---|
1816 | } |
---|
1817 | else |
---|
1818 | { |
---|
1819 | prevMsb+=(1+uiCode); |
---|
1820 | } |
---|
1821 | Int decMaxPocLsb = 1<<rpcSlice->getSPS()->getBitsForPOC(); |
---|
1822 | rps->setPOC(j,rpcSlice->getPOC()-prev-(prevMsb)*decMaxPocLsb); |
---|
1823 | rps->setDeltaPOC(j,-(Int)(prev+(prevMsb)*decMaxPocLsb)); |
---|
1824 | } |
---|
1825 | else |
---|
1826 | { |
---|
1827 | rps->setPOC(j,rpcSlice->getPOC()-prev); |
---|
1828 | rps->setDeltaPOC(j,-(Int)prev); |
---|
1829 | } |
---|
1830 | prevDeltaPocLt=prev; |
---|
1831 | READ_FLAG( uiCode, "used_by_curr_pic_lt_flag"); rps->setUsed(j,uiCode); |
---|
1832 | } |
---|
1833 | offset += rps->getNumberOfLongtermPictures(); |
---|
1834 | rps->setNumberOfPictures(offset); |
---|
1835 | } |
---|
1836 | } |
---|
1837 | } |
---|
1838 | |
---|
1839 | if(sps->getUseSAO() || sps->getUseALF() || sps->getScalingListFlag() || sps->getUseDF()) |
---|
1840 | { |
---|
1841 | //!!!KS: order is different in WD5! |
---|
1842 | if (sps->getUseALF()) |
---|
1843 | { |
---|
1844 | READ_FLAG(uiCode, "slice_adaptive_loop_filter_flag"); |
---|
1845 | rpcSlice->setAlfEnabledFlag((Bool)uiCode); |
---|
1846 | } |
---|
1847 | if (sps->getUseSAO()) |
---|
1848 | { |
---|
1849 | READ_FLAG(uiCode, "slice_sao_interleaving_flag"); rpcSlice->setSaoInterleavingFlag(uiCode); |
---|
1850 | READ_FLAG(uiCode, "slice_sample_adaptive_offset_flag"); rpcSlice->setSaoEnabledFlag((Bool)uiCode); |
---|
1851 | if (rpcSlice->getSaoEnabledFlag() && rpcSlice->getSaoInterleavingFlag()) |
---|
1852 | { |
---|
1853 | READ_FLAG(uiCode, "sao_cb_enable_flag"); rpcSlice->setSaoEnabledFlagCb((Bool)uiCode); |
---|
1854 | READ_FLAG(uiCode, "sao_cr_enable_flag"); rpcSlice->setSaoEnabledFlagCr((Bool)uiCode); |
---|
1855 | } |
---|
1856 | else |
---|
1857 | { |
---|
1858 | rpcSlice->setSaoEnabledFlagCb(0); |
---|
1859 | rpcSlice->setSaoEnabledFlagCr(0); |
---|
1860 | } |
---|
1861 | } |
---|
1862 | READ_UVLC ( uiCode, "aps_id" ); rpcSlice->setAPSId(uiCode); |
---|
1863 | } |
---|
1864 | if (!rpcSlice->isIntra()) |
---|
1865 | { |
---|
1866 | READ_FLAG( uiCode, "num_ref_idx_active_override_flag"); |
---|
1867 | if (uiCode) |
---|
1868 | { |
---|
1869 | READ_CODE (3, uiCode, "num_ref_idx_l0_active_minus1" ); rpcSlice->setNumRefIdx( REF_PIC_LIST_0, uiCode + 1 ); |
---|
1870 | if (rpcSlice->isInterB()) |
---|
1871 | { |
---|
1872 | READ_CODE (3, uiCode, "num_ref_idx_l1_active_minus1" ); rpcSlice->setNumRefIdx( REF_PIC_LIST_1, uiCode + 1 ); |
---|
1873 | } |
---|
1874 | else |
---|
1875 | { |
---|
1876 | rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0); |
---|
1877 | } |
---|
1878 | } |
---|
1879 | else |
---|
1880 | { |
---|
1881 | rpcSlice->setNumRefIdx(REF_PIC_LIST_0, 0); |
---|
1882 | rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0); |
---|
1883 | } |
---|
1884 | } |
---|
1885 | TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification(); |
---|
1886 | if( !rpcSlice->isIntra() ) |
---|
1887 | { |
---|
1888 | #if QC_MVHEVC_B0046 |
---|
1889 | if( !rpcSlice->getViewId() || !rpcSlice->getSPS()->getListsModificationPresentFlag() ) |
---|
1890 | #else |
---|
1891 | if( !rpcSlice->getSPS()->getListsModificationPresentFlag() ) |
---|
1892 | #endif |
---|
1893 | { |
---|
1894 | refPicListModification->setRefPicListModificationFlagL0( 0 ); |
---|
1895 | } |
---|
1896 | else |
---|
1897 | { |
---|
1898 | READ_FLAG( uiCode, "ref_pic_list_modification_flag_l0" ); refPicListModification->setRefPicListModificationFlagL0( uiCode ? 1 : 0 ); |
---|
1899 | } |
---|
1900 | |
---|
1901 | if(refPicListModification->getRefPicListModificationFlagL0()) |
---|
1902 | { |
---|
1903 | uiCode = 0; |
---|
1904 | Int i = 0; |
---|
1905 | Int NumPocTotalCurr = rpcSlice->getNumPocTotalCurrMvc(); |
---|
1906 | if ( NumPocTotalCurr > 1 ) |
---|
1907 | { |
---|
1908 | Int length = 1; |
---|
1909 | NumPocTotalCurr --; |
---|
1910 | while ( NumPocTotalCurr >>= 1) |
---|
1911 | { |
---|
1912 | length ++; |
---|
1913 | } |
---|
1914 | for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++) |
---|
1915 | { |
---|
1916 | READ_CODE( length, uiCode, "list_entry_l0" ); |
---|
1917 | refPicListModification->setRefPicSetIdxL0(i, uiCode ); |
---|
1918 | } |
---|
1919 | } |
---|
1920 | else |
---|
1921 | { |
---|
1922 | for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++) |
---|
1923 | { |
---|
1924 | refPicListModification->setRefPicSetIdxL0(i, 0 ); |
---|
1925 | } |
---|
1926 | } |
---|
1927 | } |
---|
1928 | } |
---|
1929 | else |
---|
1930 | { |
---|
1931 | refPicListModification->setRefPicListModificationFlagL0(0); |
---|
1932 | } |
---|
1933 | if(rpcSlice->isInterB()) |
---|
1934 | { |
---|
1935 | #if QC_MVHEVC_B0046 |
---|
1936 | if( !rpcSlice->getViewId() || !rpcSlice->getSPS()->getListsModificationPresentFlag() ) |
---|
1937 | #else |
---|
1938 | if( !rpcSlice->getSPS()->getListsModificationPresentFlag() ) |
---|
1939 | #endif |
---|
1940 | { |
---|
1941 | refPicListModification->setRefPicListModificationFlagL1( 0 ); |
---|
1942 | } |
---|
1943 | else |
---|
1944 | { |
---|
1945 | READ_FLAG( uiCode, "ref_pic_list_modification_flag_l1" ); refPicListModification->setRefPicListModificationFlagL1( uiCode ? 1 : 0 ); |
---|
1946 | } |
---|
1947 | if(refPicListModification->getRefPicListModificationFlagL1()) |
---|
1948 | { |
---|
1949 | uiCode = 0; |
---|
1950 | Int i = 0; |
---|
1951 | Int NumPocTotalCurr = rpcSlice->getNumPocTotalCurrMvc(); |
---|
1952 | if ( NumPocTotalCurr > 1 ) |
---|
1953 | { |
---|
1954 | Int length = 1; |
---|
1955 | NumPocTotalCurr --; |
---|
1956 | while ( NumPocTotalCurr >>= 1) |
---|
1957 | { |
---|
1958 | length ++; |
---|
1959 | } |
---|
1960 | for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++) |
---|
1961 | { |
---|
1962 | READ_CODE( length, uiCode, "list_entry_l1" ); |
---|
1963 | refPicListModification->setRefPicSetIdxL1(i, uiCode ); |
---|
1964 | } |
---|
1965 | } |
---|
1966 | else |
---|
1967 | { |
---|
1968 | for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++) |
---|
1969 | { |
---|
1970 | refPicListModification->setRefPicSetIdxL1(i, 0 ); |
---|
1971 | } |
---|
1972 | } |
---|
1973 | } |
---|
1974 | } |
---|
1975 | else |
---|
1976 | { |
---|
1977 | refPicListModification->setRefPicListModificationFlagL1(0); |
---|
1978 | } |
---|
1979 | } |
---|
1980 | else |
---|
1981 | { |
---|
1982 | // initialize from previous slice |
---|
1983 | pps = rpcSlice->getPPS(); |
---|
1984 | sps = rpcSlice->getSPS(); |
---|
1985 | } |
---|
1986 | // ref_pic_list_combination( ) |
---|
1987 | //!!!KS: ref_pic_list_combination() should be conditioned on entropy_slice_flag |
---|
1988 | if (rpcSlice->isInterB()) |
---|
1989 | { |
---|
1990 | READ_FLAG( uiCode, "ref_pic_list_combination_flag" ); rpcSlice->setRefPicListCombinationFlag( uiCode ? 1 : 0 ); |
---|
1991 | if(uiCode) |
---|
1992 | { |
---|
1993 | READ_UVLC( uiCode, "num_ref_idx_lc_active_minus1" ); rpcSlice->setNumRefIdx( REF_PIC_LIST_C, uiCode + 1 ); |
---|
1994 | |
---|
1995 | #if QC_MVHEVC_B0046 |
---|
1996 | if( rpcSlice->getViewId() && rpcSlice->getSPS()->getListsModificationPresentFlag() ) |
---|
1997 | #else |
---|
1998 | if(rpcSlice->getSPS()->getListsModificationPresentFlag() ) |
---|
1999 | #endif |
---|
2000 | { |
---|
2001 | READ_FLAG( uiCode, "ref_pic_list_modification_flag_lc" ); rpcSlice->setRefPicListModificationFlagLC( uiCode ? 1 : 0 ); |
---|
2002 | if(uiCode) |
---|
2003 | { |
---|
2004 | for (UInt i=0;i<rpcSlice->getNumRefIdx(REF_PIC_LIST_C);i++) |
---|
2005 | { |
---|
2006 | READ_FLAG( uiCode, "pic_from_list_0_flag" ); |
---|
2007 | rpcSlice->setListIdFromIdxOfLC(i, uiCode); |
---|
2008 | if (((rpcSlice->getListIdFromIdxOfLC(i) == REF_PIC_LIST_0) && (rpcSlice->getNumRefIdx( REF_PIC_LIST_0 ) == 1)) || ((rpcSlice->getListIdFromIdxOfLC(i) == REF_PIC_LIST_1) && (rpcSlice->getNumRefIdx( REF_PIC_LIST_1 ) == 1)) ) |
---|
2009 | { |
---|
2010 | uiCode = 0; |
---|
2011 | } |
---|
2012 | else |
---|
2013 | { |
---|
2014 | READ_UVLC( uiCode, "ref_idx_list_curr" ); |
---|
2015 | } |
---|
2016 | rpcSlice->setRefIdxFromIdxOfLC(i, uiCode); |
---|
2017 | rpcSlice->setRefIdxOfLC((RefPicList)rpcSlice->getListIdFromIdxOfLC(i), rpcSlice->getRefIdxFromIdxOfLC(i), i); |
---|
2018 | } |
---|
2019 | } |
---|
2020 | } |
---|
2021 | else |
---|
2022 | { |
---|
2023 | rpcSlice->setRefPicListModificationFlagLC(false); |
---|
2024 | } |
---|
2025 | } |
---|
2026 | else |
---|
2027 | { |
---|
2028 | rpcSlice->setRefPicListModificationFlagLC(false); |
---|
2029 | rpcSlice->setNumRefIdx(REF_PIC_LIST_C, 0); |
---|
2030 | } |
---|
2031 | } |
---|
2032 | else |
---|
2033 | { |
---|
2034 | rpcSlice->setRefPicListCombinationFlag(false); |
---|
2035 | } |
---|
2036 | |
---|
2037 | if (rpcSlice->isInterB()) |
---|
2038 | { |
---|
2039 | READ_FLAG( uiCode, "mvd_l1_zero_flag" ); rpcSlice->setMvdL1ZeroFlag( (uiCode ? true : false) ); |
---|
2040 | } |
---|
2041 | |
---|
2042 | #if CABAC_INIT_FLAG |
---|
2043 | rpcSlice->setCabacInitFlag( false ); // default |
---|
2044 | if(pps->getCabacInitPresentFlag() && !rpcSlice->isIntra()) |
---|
2045 | { |
---|
2046 | READ_FLAG(uiCode, "cabac_init_flag"); |
---|
2047 | rpcSlice->setCabacInitFlag( uiCode ? true : false ); |
---|
2048 | } |
---|
2049 | #else |
---|
2050 | if(pps->getEntropyCodingMode() && !rpcSlice->isIntra()) |
---|
2051 | { |
---|
2052 | READ_UVLC(uiCode, "cabac_init_idc"); |
---|
2053 | rpcSlice->setCABACinitIDC(uiCode); |
---|
2054 | } |
---|
2055 | else if (pps->getEntropyCodingMode() && rpcSlice->isIntra()) |
---|
2056 | { |
---|
2057 | rpcSlice->setCABACinitIDC(0); |
---|
2058 | } |
---|
2059 | #endif |
---|
2060 | |
---|
2061 | if(!bEntropySlice) |
---|
2062 | { |
---|
2063 | READ_SVLC( iCode, "slice_qp_delta" ); |
---|
2064 | rpcSlice->setSliceQp (26 + pps->getPicInitQPMinus26() + iCode); |
---|
2065 | |
---|
2066 | assert( rpcSlice->getSliceQp() >= -sps->getQpBDOffsetY() ); |
---|
2067 | assert( rpcSlice->getSliceQp() <= 51 ); |
---|
2068 | |
---|
2069 | if (rpcSlice->getPPS()->getDeblockingFilterControlPresent()) |
---|
2070 | { |
---|
2071 | if ( rpcSlice->getSPS()->getUseDF() ) |
---|
2072 | { |
---|
2073 | READ_FLAG ( uiCode, "inherit_dbl_param_from_APS_flag" ); rpcSlice->setInheritDblParamFromAPS(uiCode ? 1 : 0); |
---|
2074 | } else |
---|
2075 | { |
---|
2076 | rpcSlice->setInheritDblParamFromAPS(0); |
---|
2077 | } |
---|
2078 | if(!rpcSlice->getInheritDblParamFromAPS()) |
---|
2079 | { |
---|
2080 | READ_FLAG ( uiCode, "disable_deblocking_filter_flag" ); rpcSlice->setLoopFilterDisable(uiCode ? 1 : 0); |
---|
2081 | if(!rpcSlice->getLoopFilterDisable()) |
---|
2082 | { |
---|
2083 | READ_SVLC( iCode, "beta_offset_div2" ); rpcSlice->setLoopFilterBetaOffset(iCode); |
---|
2084 | READ_SVLC( iCode, "tc_offset_div2" ); rpcSlice->setLoopFilterTcOffset(iCode); |
---|
2085 | } |
---|
2086 | } |
---|
2087 | } |
---|
2088 | if ( rpcSlice->getSliceType() == B_SLICE ) |
---|
2089 | { |
---|
2090 | READ_FLAG( uiCode, "collocated_from_l0_flag" ); |
---|
2091 | rpcSlice->setColDir(uiCode); |
---|
2092 | } |
---|
2093 | |
---|
2094 | #if COLLOCATED_REF_IDX |
---|
2095 | if ( rpcSlice->getSliceType() != I_SLICE && |
---|
2096 | ((rpcSlice->getColDir()==0 && rpcSlice->getNumRefIdx(REF_PIC_LIST_0)>1)|| |
---|
2097 | (rpcSlice->getColDir() ==1 && rpcSlice->getNumRefIdx(REF_PIC_LIST_1)>1))) |
---|
2098 | { |
---|
2099 | READ_UVLC( uiCode, "collocated_ref_idx" ); |
---|
2100 | rpcSlice->setColRefIdx(uiCode); |
---|
2101 | } |
---|
2102 | #endif |
---|
2103 | |
---|
2104 | if ( (pps->getUseWP() && rpcSlice->getSliceType()==P_SLICE) || (pps->getWPBiPredIdc() && rpcSlice->getSliceType()==B_SLICE) ) |
---|
2105 | { |
---|
2106 | xParsePredWeightTable(rpcSlice); |
---|
2107 | rpcSlice->initWpScaling(); |
---|
2108 | } |
---|
2109 | } |
---|
2110 | |
---|
2111 | if (!bEntropySlice) |
---|
2112 | { |
---|
2113 | if( rpcSlice->getSPS()->hasCamParInSliceHeader() ) |
---|
2114 | { |
---|
2115 | UInt uiViewId = rpcSlice->getSPS()->getViewId(); |
---|
2116 | for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ ) |
---|
2117 | { |
---|
2118 | READ_SVLC( iCode, "coded_scale" ); m_aaiTempScale [ uiBaseId ][ uiViewId ] = iCode; |
---|
2119 | READ_SVLC( iCode, "coded_offset" ); m_aaiTempOffset[ uiBaseId ][ uiViewId ] = iCode; |
---|
2120 | READ_SVLC( iCode, "inverse_coded_scale_plus_coded_scale" ); m_aaiTempScale [ uiViewId ][ uiBaseId ] = iCode - m_aaiTempScale [ uiBaseId ][ uiViewId ]; |
---|
2121 | READ_SVLC( iCode, "inverse_coded_offset_plus_coded_offset" ); m_aaiTempOffset[ uiViewId ][ uiBaseId ] = iCode - m_aaiTempOffset[ uiBaseId ][ uiViewId ]; |
---|
2122 | } |
---|
2123 | rpcSlice->initMultiviewSlice( m_aaiTempScale, m_aaiTempOffset ); |
---|
2124 | } |
---|
2125 | } |
---|
2126 | |
---|
2127 | #if ( HHI_MPI || H3D_IVMP ) |
---|
2128 | #if ( HHI_MPI && H3D_IVMP ) |
---|
2129 | const int iExtraMergeCandidates = ( sps->getUseMVI() || sps->getMultiviewMvPredMode() ) ? 1 : 0; |
---|
2130 | #elif HHI_MPI |
---|
2131 | const int iExtraMergeCandidates = sps->getUseMVI() ? 1 : 0; |
---|
2132 | #elif MTK_DEPTH_MERGE_TEXTURE_CANDIDATE_C0137 |
---|
2133 | const int iExtraMergeCandidates = ( (isDepth || sps->getMultiviewMvPredMode()) ) ? 1 : 0; |
---|
2134 | #else |
---|
2135 | const int iExtraMergeCandidates = sps->getMultiviewMvPredMode() ? 1 : 0; |
---|
2136 | #endif |
---|
2137 | READ_UVLC( uiCode, "5_minus_max_num_merge_cand"); |
---|
2138 | rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS + iExtraMergeCandidates - uiCode); |
---|
2139 | assert(rpcSlice->getMaxNumMergeCand()==(MRG_MAX_NUM_CANDS_SIGNALED+iExtraMergeCandidates)); |
---|
2140 | #else |
---|
2141 | READ_UVLC( uiCode, "5_minus_max_num_merge_cand"); |
---|
2142 | rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS - uiCode); |
---|
2143 | assert(rpcSlice->getMaxNumMergeCand()==MRG_MAX_NUM_CANDS_SIGNALED); |
---|
2144 | #endif |
---|
2145 | |
---|
2146 | if (!bEntropySlice) |
---|
2147 | { |
---|
2148 | if(sps->getUseALF() && rpcSlice->getAlfEnabledFlag()) |
---|
2149 | { |
---|
2150 | UInt uiNumLCUsInWidth = sps->getPicWidthInLumaSamples() / g_uiMaxCUWidth; |
---|
2151 | UInt uiNumLCUsInHeight = sps->getPicHeightInLumaSamples() / g_uiMaxCUHeight; |
---|
2152 | |
---|
2153 | uiNumLCUsInWidth += ( sps->getPicWidthInLumaSamples() % g_uiMaxCUWidth ) ? 1 : 0; |
---|
2154 | uiNumLCUsInHeight += ( sps->getPicHeightInLumaSamples() % g_uiMaxCUHeight ) ? 1 : 0; |
---|
2155 | |
---|
2156 | Int uiNumCUsInFrame = uiNumLCUsInWidth* uiNumLCUsInHeight; |
---|
2157 | if(sps->getUseALFCoefInSlice()) |
---|
2158 | { |
---|
2159 | alfParamSet.releaseALFParam(); |
---|
2160 | alfParamSet.init(); |
---|
2161 | Bool isAcrossSlice = sps->getLFCrossSliceBoundaryFlag(); |
---|
2162 | Int numSUinLCU = 1<< (g_uiMaxCUDepth << 1); |
---|
2163 | Int firstLCUAddr = rpcSlice->getSliceCurStartCUAddr() / numSUinLCU; |
---|
2164 | xParseAlfParam(&alfParamSet, false, firstLCUAddr, isAcrossSlice, uiNumLCUsInWidth, uiNumLCUsInHeight); |
---|
2165 | } |
---|
2166 | |
---|
2167 | if(!sps->getUseALFCoefInSlice()) |
---|
2168 | { |
---|
2169 | xParseAlfCuControlParam(alfCUCtrl, uiNumCUsInFrame); |
---|
2170 | } |
---|
2171 | |
---|
2172 | } |
---|
2173 | } |
---|
2174 | |
---|
2175 | //!!!KS: The following syntax is not aligned with the working draft, TRACE support needs to be added |
---|
2176 | rpcSlice->setTileMarkerFlag ( 0 ); // default |
---|
2177 | if (!bEntropySlice) |
---|
2178 | { |
---|
2179 | xReadCode(1, uiCode); // read flag indicating if tile markers transmitted |
---|
2180 | rpcSlice->setTileMarkerFlag( uiCode ); |
---|
2181 | } |
---|
2182 | |
---|
2183 | Int tilesOrEntropyCodingSyncIdc = rpcSlice->getSPS()->getTilesOrEntropyCodingSyncIdc(); |
---|
2184 | UInt *entryPointOffset = NULL; |
---|
2185 | UInt numEntryPointOffsets, offsetLenMinus1; |
---|
2186 | |
---|
2187 | rpcSlice->setNumEntryPointOffsets ( 0 ); // default |
---|
2188 | |
---|
2189 | if (tilesOrEntropyCodingSyncIdc>0) |
---|
2190 | { |
---|
2191 | READ_UVLC(numEntryPointOffsets, "num_entry_point_offsets"); rpcSlice->setNumEntryPointOffsets ( numEntryPointOffsets ); |
---|
2192 | if (numEntryPointOffsets>0) |
---|
2193 | { |
---|
2194 | READ_UVLC(offsetLenMinus1, "offset_len_minus1"); |
---|
2195 | } |
---|
2196 | entryPointOffset = new UInt[numEntryPointOffsets]; |
---|
2197 | for (UInt idx=0; idx<numEntryPointOffsets; idx++) |
---|
2198 | { |
---|
2199 | Int bitsRead = m_pcBitstream->getNumBitsRead(); |
---|
2200 | READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset"); |
---|
2201 | entryPointOffset[ idx ] = uiCode; |
---|
2202 | if ( idx == 0 && tilesOrEntropyCodingSyncIdc == 2 ) |
---|
2203 | { |
---|
2204 | // Subtract distance from NALU header start to provide WPP 0-th substream the correct size. |
---|
2205 | entryPointOffset[ idx ] -= ( bitsRead + numEntryPointOffsets*(offsetLenMinus1+1) ) >> 3; |
---|
2206 | } |
---|
2207 | } |
---|
2208 | } |
---|
2209 | |
---|
2210 | if ( tilesOrEntropyCodingSyncIdc == 1 ) // tiles |
---|
2211 | { |
---|
2212 | rpcSlice->setTileLocationCount( numEntryPointOffsets ); |
---|
2213 | |
---|
2214 | UInt prevPos = 0; |
---|
2215 | for (Int idx=0; idx<rpcSlice->getTileLocationCount(); idx++) |
---|
2216 | { |
---|
2217 | rpcSlice->setTileLocation( idx, prevPos + entryPointOffset [ idx ] ); |
---|
2218 | prevPos += entryPointOffset[ idx ]; |
---|
2219 | } |
---|
2220 | } |
---|
2221 | else if ( tilesOrEntropyCodingSyncIdc == 2 ) // wavefront |
---|
2222 | { |
---|
2223 | Int numSubstreams = pps->getNumSubstreams(); |
---|
2224 | rpcSlice->allocSubstreamSizes(numSubstreams); |
---|
2225 | UInt *pSubstreamSizes = rpcSlice->getSubstreamSizes(); |
---|
2226 | for (Int idx=0; idx<numSubstreams-1; idx++) |
---|
2227 | { |
---|
2228 | if ( idx < numEntryPointOffsets ) |
---|
2229 | { |
---|
2230 | pSubstreamSizes[ idx ] = ( entryPointOffset[ idx ] << 3 ) ; |
---|
2231 | } |
---|
2232 | else |
---|
2233 | { |
---|
2234 | pSubstreamSizes[ idx ] = 0; |
---|
2235 | } |
---|
2236 | } |
---|
2237 | } |
---|
2238 | |
---|
2239 | if (entryPointOffset) |
---|
2240 | { |
---|
2241 | delete [] entryPointOffset; |
---|
2242 | } |
---|
2243 | |
---|
2244 | if (!bEntropySlice) |
---|
2245 | { |
---|
2246 | // Reading location information |
---|
2247 | |
---|
2248 | // read out trailing bits |
---|
2249 | m_pcBitstream->readOutTrailingBits(); |
---|
2250 | } |
---|
2251 | return; |
---|
2252 | } |
---|
2253 | |
---|
2254 | Void TDecCavlc::xParseAlfCuControlParam(AlfCUCtrlInfo& cAlfParam, Int iNumCUsInPic) |
---|
2255 | { |
---|
2256 | UInt uiSymbol; |
---|
2257 | Int iSymbol; |
---|
2258 | |
---|
2259 | READ_FLAG (uiSymbol, "alf_cu_control_flag"); |
---|
2260 | cAlfParam.cu_control_flag = uiSymbol; |
---|
2261 | if (cAlfParam.cu_control_flag) |
---|
2262 | { |
---|
2263 | READ_UVLC (uiSymbol, "alf_cu_control_max_depth"); |
---|
2264 | cAlfParam.alf_max_depth = uiSymbol; |
---|
2265 | |
---|
2266 | READ_SVLC (iSymbol, "alf_length_cu_control_info"); |
---|
2267 | cAlfParam.num_alf_cu_flag = (UInt)(iSymbol + iNumCUsInPic); |
---|
2268 | |
---|
2269 | cAlfParam.alf_cu_flag.resize(cAlfParam.num_alf_cu_flag); |
---|
2270 | |
---|
2271 | for(UInt i=0; i< cAlfParam.num_alf_cu_flag; i++) |
---|
2272 | { |
---|
2273 | READ_FLAG (cAlfParam.alf_cu_flag[i], "alf_cu_flag"); |
---|
2274 | } |
---|
2275 | } |
---|
2276 | } |
---|
2277 | |
---|
2278 | #if !CABAC_INIT_FLAG |
---|
2279 | Void TDecCavlc::resetEntropy (TComSlice* pcSlice) |
---|
2280 | { |
---|
2281 | } |
---|
2282 | #endif |
---|
2283 | |
---|
2284 | Void TDecCavlc::parseTerminatingBit( UInt& ruiBit ) |
---|
2285 | { |
---|
2286 | ruiBit = false; |
---|
2287 | Int iBitsLeft = m_pcBitstream->getNumBitsLeft(); |
---|
2288 | if(iBitsLeft <= 8) |
---|
2289 | { |
---|
2290 | UInt uiPeekValue = m_pcBitstream->peekBits(iBitsLeft); |
---|
2291 | if (uiPeekValue == (1<<(iBitsLeft-1))) |
---|
2292 | { |
---|
2293 | ruiBit = true; |
---|
2294 | } |
---|
2295 | } |
---|
2296 | } |
---|
2297 | |
---|
2298 | Void TDecCavlc::parseSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2299 | { |
---|
2300 | assert(0); |
---|
2301 | } |
---|
2302 | |
---|
2303 | #if LGE_ILLUCOMP_B0045 |
---|
2304 | Void TDecCavlc::parseICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2305 | { |
---|
2306 | assert(0); |
---|
2307 | } |
---|
2308 | #endif |
---|
2309 | |
---|
2310 | #if H3D_IVMP |
---|
2311 | Void TDecCavlc::parseMVPIdx( Int& riMVPIdx, Int iAMVPCands ) |
---|
2312 | #else |
---|
2313 | Void TDecCavlc::parseMVPIdx( Int& riMVPIdx ) |
---|
2314 | #endif |
---|
2315 | { |
---|
2316 | assert(0); |
---|
2317 | } |
---|
2318 | |
---|
2319 | Void TDecCavlc::parseSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2320 | { |
---|
2321 | assert(0); |
---|
2322 | } |
---|
2323 | |
---|
2324 | Void TDecCavlc::parsePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2325 | { |
---|
2326 | assert(0); |
---|
2327 | } |
---|
2328 | |
---|
2329 | Void TDecCavlc::parsePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2330 | { |
---|
2331 | assert(0); |
---|
2332 | } |
---|
2333 | |
---|
2334 | /** Parse I_PCM information. |
---|
2335 | * \param pcCU pointer to CU |
---|
2336 | * \param uiAbsPartIdx CU index |
---|
2337 | * \param uiDepth CU depth |
---|
2338 | * \returns Void |
---|
2339 | * |
---|
2340 | * If I_PCM flag indicates that the CU is I_PCM, parse its PCM alignment bits and codes. |
---|
2341 | */ |
---|
2342 | Void TDecCavlc::parseIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2343 | { |
---|
2344 | assert(0); |
---|
2345 | } |
---|
2346 | |
---|
2347 | Void TDecCavlc::parseIntraDirLumaAng ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2348 | { |
---|
2349 | assert(0); |
---|
2350 | } |
---|
2351 | |
---|
2352 | Void TDecCavlc::parseIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2353 | { |
---|
2354 | assert(0); |
---|
2355 | } |
---|
2356 | |
---|
2357 | Void TDecCavlc::parseInterDir( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2358 | { |
---|
2359 | assert(0); |
---|
2360 | } |
---|
2361 | |
---|
2362 | Void TDecCavlc::parseRefFrmIdx( TComDataCU* pcCU, Int& riRefFrmIdx, UInt uiAbsPartIdx, UInt uiDepth, RefPicList eRefList ) |
---|
2363 | { |
---|
2364 | assert(0); |
---|
2365 | } |
---|
2366 | |
---|
2367 | Void TDecCavlc::parseMvd( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth, RefPicList eRefList ) |
---|
2368 | { |
---|
2369 | assert(0); |
---|
2370 | } |
---|
2371 | |
---|
2372 | Void TDecCavlc::parseDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2373 | { |
---|
2374 | Int qp; |
---|
2375 | Int iDQp; |
---|
2376 | |
---|
2377 | xReadSvlc( iDQp ); |
---|
2378 | |
---|
2379 | Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY(); |
---|
2380 | qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) - qpBdOffsetY; |
---|
2381 | |
---|
2382 | UInt uiAbsQpCUPartIdx = (uiAbsPartIdx>>(8-(pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()<<1)))<<(8-(pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()<<1)) ; |
---|
2383 | UInt uiQpCUDepth = min(uiDepth,pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()) ; |
---|
2384 | |
---|
2385 | pcCU->setQPSubParts( qp, uiAbsQpCUPartIdx, uiQpCUDepth ); |
---|
2386 | } |
---|
2387 | |
---|
2388 | Void TDecCavlc::parseCoeffNxN( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType ) |
---|
2389 | { |
---|
2390 | assert(0); |
---|
2391 | } |
---|
2392 | |
---|
2393 | Void TDecCavlc::parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize ) |
---|
2394 | { |
---|
2395 | assert(0); |
---|
2396 | } |
---|
2397 | |
---|
2398 | Void TDecCavlc::parseQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth ) |
---|
2399 | { |
---|
2400 | assert(0); |
---|
2401 | } |
---|
2402 | |
---|
2403 | Void TDecCavlc::parseQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& uiQtRootCbf ) |
---|
2404 | { |
---|
2405 | assert(0); |
---|
2406 | } |
---|
2407 | |
---|
2408 | |
---|
2409 | Void TDecCavlc::parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx ) |
---|
2410 | { |
---|
2411 | assert(0); |
---|
2412 | } |
---|
2413 | |
---|
2414 | Void TDecCavlc::parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2415 | { |
---|
2416 | assert(0); |
---|
2417 | } |
---|
2418 | |
---|
2419 | #if H3D_IVRP |
---|
2420 | Void |
---|
2421 | TDecCavlc::parseResPredFlag( TComDataCU* pcCU, Bool& rbResPredFlag, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2422 | { |
---|
2423 | assert(0); |
---|
2424 | } |
---|
2425 | #endif |
---|
2426 | |
---|
2427 | #if RWTH_SDC_DLT_B0036 |
---|
2428 | Void TDecCavlc::parseSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2429 | { |
---|
2430 | assert(0); |
---|
2431 | } |
---|
2432 | Void TDecCavlc::parseSDCPredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) |
---|
2433 | { |
---|
2434 | assert(0); |
---|
2435 | } |
---|
2436 | Void TDecCavlc::parseSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPart ) |
---|
2437 | { |
---|
2438 | assert(0); |
---|
2439 | } |
---|
2440 | #endif |
---|
2441 | |
---|
2442 | // ==================================================================================================================== |
---|
2443 | // Protected member functions |
---|
2444 | // ==================================================================================================================== |
---|
2445 | |
---|
2446 | Void TDecCavlc::xReadCode (UInt uiLength, UInt& ruiCode) |
---|
2447 | { |
---|
2448 | assert ( uiLength > 0 ); |
---|
2449 | m_pcBitstream->read (uiLength, ruiCode); |
---|
2450 | } |
---|
2451 | |
---|
2452 | Void TDecCavlc::xReadUvlc( UInt& ruiVal) |
---|
2453 | { |
---|
2454 | UInt uiVal = 0; |
---|
2455 | UInt uiCode = 0; |
---|
2456 | UInt uiLength; |
---|
2457 | m_pcBitstream->read( 1, uiCode ); |
---|
2458 | |
---|
2459 | if( 0 == uiCode ) |
---|
2460 | { |
---|
2461 | uiLength = 0; |
---|
2462 | |
---|
2463 | while( ! ( uiCode & 1 )) |
---|
2464 | { |
---|
2465 | m_pcBitstream->read( 1, uiCode ); |
---|
2466 | uiLength++; |
---|
2467 | } |
---|
2468 | |
---|
2469 | m_pcBitstream->read( uiLength, uiVal ); |
---|
2470 | |
---|
2471 | uiVal += (1 << uiLength)-1; |
---|
2472 | } |
---|
2473 | |
---|
2474 | ruiVal = uiVal; |
---|
2475 | } |
---|
2476 | |
---|
2477 | Void TDecCavlc::xReadSvlc( Int& riVal) |
---|
2478 | { |
---|
2479 | UInt uiBits = 0; |
---|
2480 | m_pcBitstream->read( 1, uiBits ); |
---|
2481 | if( 0 == uiBits ) |
---|
2482 | { |
---|
2483 | UInt uiLength = 0; |
---|
2484 | |
---|
2485 | while( ! ( uiBits & 1 )) |
---|
2486 | { |
---|
2487 | m_pcBitstream->read( 1, uiBits ); |
---|
2488 | uiLength++; |
---|
2489 | } |
---|
2490 | |
---|
2491 | m_pcBitstream->read( uiLength, uiBits ); |
---|
2492 | |
---|
2493 | uiBits += (1 << uiLength); |
---|
2494 | riVal = ( uiBits & 1) ? -(Int)(uiBits>>1) : (Int)(uiBits>>1); |
---|
2495 | } |
---|
2496 | else |
---|
2497 | { |
---|
2498 | riVal = 0; |
---|
2499 | } |
---|
2500 | } |
---|
2501 | |
---|
2502 | Void TDecCavlc::xReadFlag (UInt& ruiCode) |
---|
2503 | { |
---|
2504 | m_pcBitstream->read( 1, ruiCode ); |
---|
2505 | } |
---|
2506 | |
---|
2507 | #if QC_MVHEVC_B0046 |
---|
2508 | /** Parse VPS alignment one bits. |
---|
2509 | * \returns Void |
---|
2510 | */ |
---|
2511 | Void TDecCavlc::xReadVPSAlignOne( ) |
---|
2512 | { |
---|
2513 | UInt uiNumberOfBits = m_pcBitstream->getNumBitsUntilByteAligned(); |
---|
2514 | |
---|
2515 | if(uiNumberOfBits) |
---|
2516 | { |
---|
2517 | UInt uiBits; |
---|
2518 | UInt uiSymbol; |
---|
2519 | |
---|
2520 | for(uiBits = 0; uiBits < uiNumberOfBits; uiBits++) |
---|
2521 | { |
---|
2522 | xReadFlag( uiSymbol ); |
---|
2523 | |
---|
2524 | if(!uiSymbol) |
---|
2525 | { |
---|
2526 | printf("\nWarning! vps_extension_byte_alignment_reserved_one_bit include a non-zero value.\n"); |
---|
2527 | } |
---|
2528 | } |
---|
2529 | } |
---|
2530 | } |
---|
2531 | #endif |
---|
2532 | /** Parse PCM alignment zero bits. |
---|
2533 | * \returns Void |
---|
2534 | */ |
---|
2535 | Void TDecCavlc::xReadPCMAlignZero( ) |
---|
2536 | { |
---|
2537 | UInt uiNumberOfBits = m_pcBitstream->getNumBitsUntilByteAligned(); |
---|
2538 | |
---|
2539 | if(uiNumberOfBits) |
---|
2540 | { |
---|
2541 | UInt uiBits; |
---|
2542 | UInt uiSymbol; |
---|
2543 | |
---|
2544 | for(uiBits = 0; uiBits < uiNumberOfBits; uiBits++) |
---|
2545 | { |
---|
2546 | xReadFlag( uiSymbol ); |
---|
2547 | |
---|
2548 | if(uiSymbol) |
---|
2549 | { |
---|
2550 | printf("\nWarning! pcm_align_zero include a non-zero value.\n"); |
---|
2551 | } |
---|
2552 | } |
---|
2553 | } |
---|
2554 | } |
---|
2555 | |
---|
2556 | Void TDecCavlc::xReadUnaryMaxSymbol( UInt& ruiSymbol, UInt uiMaxSymbol ) |
---|
2557 | { |
---|
2558 | if (uiMaxSymbol == 0) |
---|
2559 | { |
---|
2560 | ruiSymbol = 0; |
---|
2561 | return; |
---|
2562 | } |
---|
2563 | |
---|
2564 | xReadFlag( ruiSymbol ); |
---|
2565 | |
---|
2566 | if (ruiSymbol == 0 || uiMaxSymbol == 1) |
---|
2567 | { |
---|
2568 | return; |
---|
2569 | } |
---|
2570 | |
---|
2571 | UInt uiSymbol = 0; |
---|
2572 | UInt uiCont; |
---|
2573 | |
---|
2574 | do |
---|
2575 | { |
---|
2576 | xReadFlag( uiCont ); |
---|
2577 | uiSymbol++; |
---|
2578 | } |
---|
2579 | while( uiCont && (uiSymbol < uiMaxSymbol-1) ); |
---|
2580 | |
---|
2581 | if( uiCont && (uiSymbol == uiMaxSymbol-1) ) |
---|
2582 | { |
---|
2583 | uiSymbol++; |
---|
2584 | } |
---|
2585 | |
---|
2586 | ruiSymbol = uiSymbol; |
---|
2587 | } |
---|
2588 | |
---|
2589 | Void TDecCavlc::xReadExGolombLevel( UInt& ruiSymbol ) |
---|
2590 | { |
---|
2591 | UInt uiSymbol ; |
---|
2592 | UInt uiCount = 0; |
---|
2593 | do |
---|
2594 | { |
---|
2595 | xReadFlag( uiSymbol ); |
---|
2596 | uiCount++; |
---|
2597 | } |
---|
2598 | while( uiSymbol && (uiCount != 13)); |
---|
2599 | |
---|
2600 | ruiSymbol = uiCount-1; |
---|
2601 | |
---|
2602 | if( uiSymbol ) |
---|
2603 | { |
---|
2604 | xReadEpExGolomb( uiSymbol, 0 ); |
---|
2605 | ruiSymbol += uiSymbol+1; |
---|
2606 | } |
---|
2607 | |
---|
2608 | return; |
---|
2609 | } |
---|
2610 | |
---|
2611 | Void TDecCavlc::xReadEpExGolomb( UInt& ruiSymbol, UInt uiCount ) |
---|
2612 | { |
---|
2613 | UInt uiSymbol = 0; |
---|
2614 | UInt uiBit = 1; |
---|
2615 | |
---|
2616 | |
---|
2617 | while( uiBit ) |
---|
2618 | { |
---|
2619 | xReadFlag( uiBit ); |
---|
2620 | uiSymbol += uiBit << uiCount++; |
---|
2621 | } |
---|
2622 | |
---|
2623 | uiCount--; |
---|
2624 | while( uiCount-- ) |
---|
2625 | { |
---|
2626 | xReadFlag( uiBit ); |
---|
2627 | uiSymbol += uiBit << uiCount; |
---|
2628 | } |
---|
2629 | |
---|
2630 | ruiSymbol = uiSymbol; |
---|
2631 | |
---|
2632 | return; |
---|
2633 | } |
---|
2634 | |
---|
2635 | UInt TDecCavlc::xGetBit() |
---|
2636 | { |
---|
2637 | UInt ruiCode; |
---|
2638 | m_pcBitstream->read( 1, ruiCode ); |
---|
2639 | return ruiCode; |
---|
2640 | } |
---|
2641 | |
---|
2642 | |
---|
2643 | /** parse explicit wp tables |
---|
2644 | * \param TComSlice* pcSlice |
---|
2645 | * \returns Void |
---|
2646 | */ |
---|
2647 | Void TDecCavlc::xParsePredWeightTable( TComSlice* pcSlice ) |
---|
2648 | { |
---|
2649 | wpScalingParam *wp; |
---|
2650 | Bool bChroma = true; // color always present in HEVC ? |
---|
2651 | TComPPS* pps = pcSlice->getPPS(); |
---|
2652 | SliceType eSliceType = pcSlice->getSliceType(); |
---|
2653 | Int iNbRef = (eSliceType == B_SLICE ) ? (2) : (1); |
---|
2654 | UInt uiLog2WeightDenomLuma, uiLog2WeightDenomChroma; |
---|
2655 | UInt uiMode = 0; |
---|
2656 | |
---|
2657 | if ( (eSliceType==P_SLICE && pps->getUseWP()) || (eSliceType==B_SLICE && pps->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag()==0) ) |
---|
2658 | uiMode = 1; // explicit |
---|
2659 | else if ( eSliceType==B_SLICE && pps->getWPBiPredIdc()==2 ) |
---|
2660 | uiMode = 2; // implicit |
---|
2661 | else if (eSliceType==B_SLICE && pps->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag()) |
---|
2662 | uiMode = 3; // combined explicit |
---|
2663 | |
---|
2664 | if ( uiMode == 1 ) // explicit |
---|
2665 | { |
---|
2666 | printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) explicit...\n", pcSlice->getPOC()); |
---|
2667 | Int iDeltaDenom; |
---|
2668 | // decode delta_luma_log2_weight_denom : |
---|
2669 | READ_UVLC( uiLog2WeightDenomLuma, "luma_log2_weight_denom" ); // ue(v): luma_log2_weight_denom |
---|
2670 | if( bChroma ) |
---|
2671 | { |
---|
2672 | READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" ); // se(v): delta_chroma_log2_weight_denom |
---|
2673 | assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0); |
---|
2674 | uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma); |
---|
2675 | } |
---|
2676 | |
---|
2677 | for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) |
---|
2678 | { |
---|
2679 | RefPicList eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 ); |
---|
2680 | for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) |
---|
2681 | { |
---|
2682 | pcSlice->getWpScaling(eRefPicList, iRefIdx, wp); |
---|
2683 | |
---|
2684 | wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma; |
---|
2685 | wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma; |
---|
2686 | wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma; |
---|
2687 | |
---|
2688 | UInt uiCode; |
---|
2689 | READ_FLAG( uiCode, "luma_weight_lX_flag" ); // u(1): luma_weight_l0_flag |
---|
2690 | wp[0].bPresentFlag = ( uiCode == 1 ); |
---|
2691 | if ( wp[0].bPresentFlag ) |
---|
2692 | { |
---|
2693 | Int iDeltaWeight; |
---|
2694 | READ_SVLC( iDeltaWeight, "delta_luma_weight_lX" ); // se(v): delta_luma_weight_l0[i] |
---|
2695 | wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom)); |
---|
2696 | READ_SVLC( wp[0].iOffset, "luma_offset_lX" ); // se(v): luma_offset_l0[i] |
---|
2697 | } |
---|
2698 | else |
---|
2699 | { |
---|
2700 | wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom); |
---|
2701 | wp[0].iOffset = 0; |
---|
2702 | } |
---|
2703 | if ( bChroma ) |
---|
2704 | { |
---|
2705 | READ_FLAG( uiCode, "chroma_weight_lX_flag" ); // u(1): chroma_weight_l0_flag |
---|
2706 | wp[1].bPresentFlag = ( uiCode == 1 ); |
---|
2707 | wp[2].bPresentFlag = ( uiCode == 1 ); |
---|
2708 | if ( wp[1].bPresentFlag ) |
---|
2709 | { |
---|
2710 | for ( Int j=1 ; j<3 ; j++ ) |
---|
2711 | { |
---|
2712 | Int iDeltaWeight; |
---|
2713 | READ_SVLC( iDeltaWeight, "delta_chroma_weight_lX" ); // se(v): chroma_weight_l0[i][j] |
---|
2714 | wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom)); |
---|
2715 | |
---|
2716 | Int iDeltaChroma; |
---|
2717 | READ_SVLC( iDeltaChroma, "delta_chroma_offset_lX" ); // se(v): delta_chroma_offset_l0[i][j] |
---|
2718 | wp[j].iOffset = iDeltaChroma - ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) + (g_uiIBDI_MAX>>1); |
---|
2719 | } |
---|
2720 | } |
---|
2721 | else |
---|
2722 | { |
---|
2723 | for ( Int j=1 ; j<3 ; j++ ) |
---|
2724 | { |
---|
2725 | wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom); |
---|
2726 | wp[j].iOffset = 0; |
---|
2727 | } |
---|
2728 | } |
---|
2729 | } |
---|
2730 | } |
---|
2731 | |
---|
2732 | for ( Int iRefIdx=pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx<MAX_NUM_REF ; iRefIdx++ ) |
---|
2733 | { |
---|
2734 | pcSlice->getWpScaling(eRefPicList, iRefIdx, wp); |
---|
2735 | |
---|
2736 | wp[0].bPresentFlag = false; |
---|
2737 | wp[1].bPresentFlag = false; |
---|
2738 | wp[2].bPresentFlag = false; |
---|
2739 | } |
---|
2740 | } |
---|
2741 | } |
---|
2742 | else if ( uiMode == 2 ) // implicit |
---|
2743 | { |
---|
2744 | printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) implicit...\n", pcSlice->getPOC()); |
---|
2745 | } |
---|
2746 | else if ( uiMode == 3 ) // combined explicit |
---|
2747 | { |
---|
2748 | printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) combined explicit...\n", pcSlice->getPOC()); |
---|
2749 | Int iDeltaDenom; |
---|
2750 | // decode delta_luma_log2_weight_denom : |
---|
2751 | READ_UVLC ( uiLog2WeightDenomLuma, "luma_log2_weight_denom" ); // ue(v): luma_log2_weight_denom |
---|
2752 | if( bChroma ) |
---|
2753 | { |
---|
2754 | READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" ); // ue(v): delta_chroma_log2_weight_denom |
---|
2755 | assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0); |
---|
2756 | uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma); |
---|
2757 | } |
---|
2758 | |
---|
2759 | for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(REF_PIC_LIST_C) ; iRefIdx++ ) |
---|
2760 | { |
---|
2761 | pcSlice->getWpScalingLC(iRefIdx, wp); |
---|
2762 | |
---|
2763 | wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma; |
---|
2764 | wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma; |
---|
2765 | wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma; |
---|
2766 | |
---|
2767 | UInt uiCode; |
---|
2768 | READ_FLAG( uiCode, "luma_weight_lc_flag" ); // u(1): luma_weight_lc_flag |
---|
2769 | wp[0].bPresentFlag = ( uiCode == 1 ); |
---|
2770 | if ( wp[0].bPresentFlag ) |
---|
2771 | { |
---|
2772 | Int iDeltaWeight; |
---|
2773 | READ_SVLC( iDeltaWeight, "delta_luma_weight_lc" ); // se(v): delta_luma_weight_lc |
---|
2774 | wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom)); |
---|
2775 | READ_SVLC( wp[0].iOffset, "luma_offset_lc" ); // se(v): luma_offset_lc |
---|
2776 | } |
---|
2777 | else |
---|
2778 | { |
---|
2779 | wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom); |
---|
2780 | wp[0].iOffset = 0; |
---|
2781 | } |
---|
2782 | if ( bChroma ) |
---|
2783 | { |
---|
2784 | READ_FLAG( uiCode, "chroma_weight_lc_flag" ); // u(1): chroma_weight_lc_flag |
---|
2785 | wp[1].bPresentFlag = ( uiCode == 1 ); |
---|
2786 | wp[2].bPresentFlag = ( uiCode == 1 ); |
---|
2787 | if ( wp[1].bPresentFlag ) |
---|
2788 | { |
---|
2789 | for ( Int j=1 ; j<3 ; j++ ) |
---|
2790 | { |
---|
2791 | Int iDeltaWeight; |
---|
2792 | READ_SVLC( iDeltaWeight, "delta_chroma_weight_lc" ); // se(v): delta_chroma_weight_lc |
---|
2793 | wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom)); |
---|
2794 | |
---|
2795 | Int iDeltaChroma; |
---|
2796 | READ_SVLC( iDeltaChroma, "delta_chroma_offset_lc" ); // se(v): delta_chroma_offset_lc |
---|
2797 | wp[j].iOffset = iDeltaChroma - ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) + (g_uiIBDI_MAX>>1); |
---|
2798 | } |
---|
2799 | } |
---|
2800 | else |
---|
2801 | { |
---|
2802 | for ( Int j=1 ; j<3 ; j++ ) |
---|
2803 | { |
---|
2804 | wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom); |
---|
2805 | wp[j].iOffset = 0; |
---|
2806 | } |
---|
2807 | } |
---|
2808 | } |
---|
2809 | } |
---|
2810 | |
---|
2811 | for ( Int iRefIdx=pcSlice->getNumRefIdx(REF_PIC_LIST_C) ; iRefIdx<2*MAX_NUM_REF ; iRefIdx++ ) |
---|
2812 | { |
---|
2813 | pcSlice->getWpScalingLC(iRefIdx, wp); |
---|
2814 | |
---|
2815 | wp[0].bPresentFlag = false; |
---|
2816 | wp[1].bPresentFlag = false; |
---|
2817 | wp[2].bPresentFlag = false; |
---|
2818 | } |
---|
2819 | } |
---|
2820 | else |
---|
2821 | { |
---|
2822 | printf("\n wrong weight pred table syntax \n "); |
---|
2823 | assert(0); |
---|
2824 | } |
---|
2825 | } |
---|
2826 | |
---|
2827 | /** decode quantization matrix |
---|
2828 | * \param scalingList quantization matrix information |
---|
2829 | */ |
---|
2830 | Void TDecCavlc::parseScalingList(TComScalingList* scalingList) |
---|
2831 | { |
---|
2832 | UInt code, sizeId, listId; |
---|
2833 | Bool scalingListPredModeFlag; |
---|
2834 | READ_FLAG( code, "scaling_list_present_flag" ); |
---|
2835 | scalingList->setScalingListPresentFlag ( (code==1)?true:false ); |
---|
2836 | if(scalingList->getScalingListPresentFlag() == false) |
---|
2837 | { |
---|
2838 | //for each size |
---|
2839 | for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++) |
---|
2840 | { |
---|
2841 | for(listId = 0; listId < g_scalingListNum[sizeId]; listId++) |
---|
2842 | { |
---|
2843 | READ_FLAG( code, "scaling_list_pred_mode_flag"); |
---|
2844 | scalingListPredModeFlag = (code) ? true : false; |
---|
2845 | if(!scalingListPredModeFlag) //Copy Mode |
---|
2846 | { |
---|
2847 | READ_UVLC( code, "scaling_list_pred_matrix_id_delta"); |
---|
2848 | scalingList->setRefMatrixId (sizeId,listId,(UInt)((Int)(listId)-(code+1))); |
---|
2849 | if( sizeId > SCALING_LIST_8x8 ) |
---|
2850 | { |
---|
2851 | scalingList->setScalingListDC(sizeId,listId,scalingList->getScalingListDC(sizeId, scalingList->getRefMatrixId (sizeId,listId))); |
---|
2852 | } |
---|
2853 | scalingList->processRefMatrix( sizeId, listId, scalingList->getRefMatrixId (sizeId,listId)); |
---|
2854 | |
---|
2855 | } |
---|
2856 | else //DPCM Mode |
---|
2857 | { |
---|
2858 | xDecodeScalingList(scalingList, sizeId, listId); |
---|
2859 | } |
---|
2860 | } |
---|
2861 | } |
---|
2862 | } |
---|
2863 | |
---|
2864 | return; |
---|
2865 | } |
---|
2866 | /** decode DPCM |
---|
2867 | * \param scalingList quantization matrix information |
---|
2868 | * \param sizeId size index |
---|
2869 | * \param listId list index |
---|
2870 | */ |
---|
2871 | Void TDecCavlc::xDecodeScalingList(TComScalingList *scalingList, UInt sizeId, UInt listId) |
---|
2872 | { |
---|
2873 | Int i,coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]); |
---|
2874 | Int data; |
---|
2875 | Int scalingListDcCoefMinus8 = 0; |
---|
2876 | Int nextCoef = SCALING_LIST_START_VALUE; |
---|
2877 | UInt* scan = g_auiFrameScanXY [ (sizeId == 0)? 1 : 2 ]; |
---|
2878 | Bool stopNow = false; |
---|
2879 | Int *dst = scalingList->getScalingListAddress(sizeId, listId); |
---|
2880 | |
---|
2881 | scalingList->setUseDefaultScalingMatrixFlag(sizeId,listId,false); |
---|
2882 | if( sizeId > SCALING_LIST_8x8 ) |
---|
2883 | { |
---|
2884 | READ_SVLC( scalingListDcCoefMinus8, "scaling_list_dc_coef_minus8"); |
---|
2885 | scalingList->setScalingListDC(sizeId,listId,scalingListDcCoefMinus8 + 8); |
---|
2886 | if(scalingListDcCoefMinus8 == -8) |
---|
2887 | { |
---|
2888 | scalingList->processDefaultMarix(sizeId,listId); |
---|
2889 | } |
---|
2890 | } |
---|
2891 | |
---|
2892 | if( !scalingList->getUseDefaultScalingMatrixFlag(sizeId,listId)) |
---|
2893 | { |
---|
2894 | for(i = 0; i < coefNum && !stopNow ; i++) |
---|
2895 | { |
---|
2896 | READ_SVLC( data, "scaling_list_delta_coef"); |
---|
2897 | nextCoef = (nextCoef + data + 256 ) % 256; |
---|
2898 | if(sizeId < SCALING_LIST_16x16) |
---|
2899 | { |
---|
2900 | if( i == 0 && nextCoef == 0 ) |
---|
2901 | { |
---|
2902 | scalingList->processDefaultMarix(sizeId,listId); |
---|
2903 | stopNow = true; |
---|
2904 | } |
---|
2905 | } |
---|
2906 | if(!stopNow) |
---|
2907 | { |
---|
2908 | dst[scan[i]] = nextCoef; |
---|
2909 | } |
---|
2910 | } |
---|
2911 | } |
---|
2912 | } |
---|
2913 | |
---|
2914 | Void TDecCavlc::parseDFFlag(UInt& ruiVal, const Char *pSymbolName) |
---|
2915 | { |
---|
2916 | READ_FLAG(ruiVal, pSymbolName); |
---|
2917 | } |
---|
2918 | Void TDecCavlc::parseDFSvlc(Int& riVal, const Char *pSymbolName) |
---|
2919 | { |
---|
2920 | READ_SVLC(riVal, pSymbolName); |
---|
2921 | } |
---|
2922 | |
---|
2923 | Bool TDecCavlc::xMoreRbspData() |
---|
2924 | { |
---|
2925 | Int bitsLeft = m_pcBitstream->getNumBitsLeft(); |
---|
2926 | |
---|
2927 | // if there are more than 8 bits, it cannot be rbsp_trailing_bits |
---|
2928 | if (bitsLeft > 8) |
---|
2929 | { |
---|
2930 | return true; |
---|
2931 | } |
---|
2932 | |
---|
2933 | UChar lastByte = m_pcBitstream->peekBits(bitsLeft); |
---|
2934 | Int cnt = bitsLeft; |
---|
2935 | |
---|
2936 | // remove trailing bits equal to zero |
---|
2937 | while ((cnt>0) && ((lastByte & 1) == 0)) |
---|
2938 | { |
---|
2939 | lastByte >>= 1; |
---|
2940 | cnt--; |
---|
2941 | } |
---|
2942 | // remove bit equal to one |
---|
2943 | cnt--; |
---|
2944 | |
---|
2945 | // we should not have a negative number of bits |
---|
2946 | assert (cnt>=0); |
---|
2947 | |
---|
2948 | // we have more data, if cnt is not zero |
---|
2949 | return (cnt>0); |
---|
2950 | } |
---|
2951 | |
---|
2952 | //! \} |
---|