[5] | 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 |
---|
[56] | 4 | * granted under this license. |
---|
[5] | 5 | * |
---|
[56] | 6 | * Copyright (c) 2010-2012, ITU/ISO/IEC |
---|
[5] | 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. |
---|
[56] | 17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
[5] | 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 | */ |
---|
[2] | 33 | |
---|
| 34 | /** \file TDecBinCoderCABAC.cpp |
---|
| 35 | \brief binary entropy decoder of CABAC |
---|
| 36 | */ |
---|
| 37 | |
---|
| 38 | #include "TDecBinCoderCABAC.h" |
---|
| 39 | |
---|
[56] | 40 | //! \ingroup TLibDecoder |
---|
| 41 | //! \{ |
---|
[2] | 42 | |
---|
| 43 | TDecBinCABAC::TDecBinCABAC() |
---|
| 44 | : m_pcTComBitstream( 0 ) |
---|
| 45 | { |
---|
| 46 | } |
---|
| 47 | |
---|
| 48 | TDecBinCABAC::~TDecBinCABAC() |
---|
| 49 | { |
---|
| 50 | } |
---|
| 51 | |
---|
| 52 | Void |
---|
[56] | 53 | TDecBinCABAC::init( TComInputBitstream* pcTComBitstream ) |
---|
[2] | 54 | { |
---|
| 55 | m_pcTComBitstream = pcTComBitstream; |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | Void |
---|
| 59 | TDecBinCABAC::uninit() |
---|
| 60 | { |
---|
| 61 | m_pcTComBitstream = 0; |
---|
| 62 | } |
---|
| 63 | |
---|
| 64 | Void |
---|
| 65 | TDecBinCABAC::start() |
---|
| 66 | { |
---|
[296] | 67 | #if OL_FLUSH_ALIGN |
---|
[56] | 68 | assert( m_pcTComBitstream->getNumBitsUntilByteAligned() == 0 ); |
---|
| 69 | #endif |
---|
[2] | 70 | |
---|
| 71 | m_uiRange = 510; |
---|
[56] | 72 | m_bitsNeeded = -8; |
---|
| 73 | m_uiValue = m_pcTComBitstream->readByte() << 8; |
---|
[296] | 74 | #if !OL_FLUSH_ALIGN |
---|
[56] | 75 | m_uiLastByte = m_pcTComBitstream->readByte(); |
---|
| 76 | m_uiValue |= m_uiLastByte; |
---|
| 77 | #else |
---|
| 78 | m_uiValue |= m_pcTComBitstream->readByte(); |
---|
| 79 | #endif |
---|
| 80 | } |
---|
| 81 | |
---|
| 82 | Void |
---|
| 83 | TDecBinCABAC::finish() |
---|
| 84 | { |
---|
| 85 | } |
---|
| 86 | |
---|
| 87 | Void |
---|
| 88 | TDecBinCABAC::flush() |
---|
| 89 | { |
---|
| 90 | #if OL_FLUSH_ALIGN |
---|
| 91 | while (m_pcTComBitstream->getNumBitsLeft() > 0 && m_pcTComBitstream->getNumBitsUntilByteAligned() != 0) |
---|
[2] | 92 | { |
---|
[56] | 93 | UInt uiBits; |
---|
| 94 | m_pcTComBitstream->read ( 1, uiBits ); |
---|
[2] | 95 | } |
---|
[56] | 96 | start(); |
---|
| 97 | #else |
---|
| 98 | m_uiRange = 510; |
---|
| 99 | Int iExtra = 16+m_bitsNeeded+1; // m_bitsNeeded is -ve: iExtra is many bits to read to make up 16. |
---|
| 100 | UInt uiExtraBits; |
---|
| 101 | m_pcTComBitstream->read(iExtra, uiExtraBits); |
---|
| 102 | m_uiValue = (m_uiLastByte << iExtra) | uiExtraBits; |
---|
| 103 | m_uiValue &= 0xffff; |
---|
| 104 | m_uiLastByte = m_uiValue; |
---|
| 105 | m_uiLastByte &= 0xff; |
---|
| 106 | m_bitsNeeded = -8; |
---|
| 107 | #endif // OL_FLUSH_ALIGN |
---|
[2] | 108 | } |
---|
| 109 | |
---|
[56] | 110 | /** |
---|
| 111 | - Copy CABAC state. |
---|
| 112 | . |
---|
| 113 | \param pcTDecBinIf The source CABAC engine. |
---|
| 114 | */ |
---|
[2] | 115 | Void |
---|
[56] | 116 | TDecBinCABAC::copyState( TDecBinIf* pcTDecBinIf ) |
---|
[2] | 117 | { |
---|
[56] | 118 | TDecBinCABAC* pcTDecBinCABAC = pcTDecBinIf->getTDecBinCABAC(); |
---|
| 119 | m_uiRange = pcTDecBinCABAC->m_uiRange; |
---|
| 120 | m_uiValue = pcTDecBinCABAC->m_uiValue; |
---|
| 121 | m_bitsNeeded= pcTDecBinCABAC->m_bitsNeeded; |
---|
[296] | 122 | #if !OL_FLUSH_ALIGN |
---|
[56] | 123 | m_uiLastByte= pcTDecBinCABAC->m_uiLastByte; |
---|
| 124 | #endif |
---|
[2] | 125 | } |
---|
| 126 | |
---|
[56] | 127 | |
---|
[2] | 128 | Void |
---|
| 129 | TDecBinCABAC::decodeBin( UInt& ruiBin, ContextModel &rcCtxModel ) |
---|
| 130 | { |
---|
[56] | 131 | UInt uiLPS = TComCABACTables::sm_aucLPSTable[ rcCtxModel.getState() ][ ( m_uiRange >> 6 ) - 4 ]; |
---|
| 132 | m_uiRange -= uiLPS; |
---|
| 133 | UInt scaledRange = m_uiRange << 7; |
---|
| 134 | |
---|
| 135 | if( m_uiValue < scaledRange ) |
---|
[2] | 136 | { |
---|
[56] | 137 | // MPS path |
---|
| 138 | ruiBin = rcCtxModel.getMps(); |
---|
[2] | 139 | rcCtxModel.updateMPS(); |
---|
[56] | 140 | |
---|
| 141 | if ( scaledRange >= ( 256 << 7 ) ) |
---|
| 142 | { |
---|
| 143 | return; |
---|
| 144 | } |
---|
| 145 | |
---|
| 146 | m_uiRange = scaledRange >> 6; |
---|
| 147 | m_uiValue += m_uiValue; |
---|
| 148 | |
---|
| 149 | if ( ++m_bitsNeeded == 0 ) |
---|
| 150 | { |
---|
| 151 | m_bitsNeeded = -8; |
---|
[296] | 152 | #if !OL_FLUSH_ALIGN |
---|
[56] | 153 | m_uiLastByte = m_pcTComBitstream->readByte(); |
---|
| 154 | m_uiValue += m_uiLastByte; |
---|
| 155 | #else |
---|
| 156 | m_uiValue += m_pcTComBitstream->readByte(); |
---|
| 157 | #endif |
---|
| 158 | } |
---|
[2] | 159 | } |
---|
| 160 | else |
---|
| 161 | { |
---|
[56] | 162 | // LPS path |
---|
| 163 | Int numBits = TComCABACTables::sm_aucRenormTable[ uiLPS >> 3 ]; |
---|
| 164 | m_uiValue = ( m_uiValue - scaledRange ) << numBits; |
---|
| 165 | m_uiRange = uiLPS << numBits; |
---|
[2] | 166 | ruiBin = 1 - rcCtxModel.getMps(); |
---|
| 167 | rcCtxModel.updateLPS(); |
---|
[56] | 168 | |
---|
| 169 | m_bitsNeeded += numBits; |
---|
| 170 | |
---|
| 171 | if ( m_bitsNeeded >= 0 ) |
---|
| 172 | { |
---|
[296] | 173 | #if !OL_FLUSH_ALIGN |
---|
[56] | 174 | m_uiLastByte = m_pcTComBitstream->readByte(); |
---|
| 175 | m_uiValue += m_uiLastByte << m_bitsNeeded; |
---|
| 176 | #else |
---|
| 177 | m_uiValue += m_pcTComBitstream->readByte() << m_bitsNeeded; |
---|
| 178 | #endif |
---|
| 179 | m_bitsNeeded -= 8; |
---|
| 180 | } |
---|
[2] | 181 | } |
---|
| 182 | } |
---|
| 183 | |
---|
| 184 | Void |
---|
| 185 | TDecBinCABAC::decodeBinEP( UInt& ruiBin ) |
---|
| 186 | { |
---|
[56] | 187 | m_uiValue += m_uiValue; |
---|
| 188 | |
---|
| 189 | if ( ++m_bitsNeeded >= 0 ) |
---|
[2] | 190 | { |
---|
[56] | 191 | m_bitsNeeded = -8; |
---|
[296] | 192 | #if !OL_FLUSH_ALIGN |
---|
[56] | 193 | m_uiLastByte = m_pcTComBitstream->readByte(); |
---|
| 194 | m_uiValue += m_uiLastByte; |
---|
| 195 | #else |
---|
| 196 | m_uiValue += m_pcTComBitstream->readByte(); |
---|
| 197 | #endif |
---|
[2] | 198 | } |
---|
[56] | 199 | |
---|
| 200 | ruiBin = 0; |
---|
| 201 | UInt scaledRange = m_uiRange << 7; |
---|
| 202 | if ( m_uiValue >= scaledRange ) |
---|
[2] | 203 | { |
---|
[56] | 204 | ruiBin = 1; |
---|
| 205 | m_uiValue -= scaledRange; |
---|
[2] | 206 | } |
---|
| 207 | } |
---|
| 208 | |
---|
[56] | 209 | Void TDecBinCABAC::decodeBinsEP( UInt& ruiBin, Int numBins ) |
---|
| 210 | { |
---|
| 211 | UInt bins = 0; |
---|
| 212 | |
---|
| 213 | while ( numBins > 8 ) |
---|
| 214 | { |
---|
[296] | 215 | #if !OL_FLUSH_ALIGN |
---|
[56] | 216 | m_uiLastByte = m_pcTComBitstream->readByte(); |
---|
| 217 | m_uiValue = ( m_uiValue << 8 ) + ( m_uiLastByte << ( 8 + m_bitsNeeded ) ); |
---|
| 218 | #else |
---|
| 219 | m_uiValue = ( m_uiValue << 8 ) + ( m_pcTComBitstream->readByte() << ( 8 + m_bitsNeeded ) ); |
---|
| 220 | #endif |
---|
| 221 | |
---|
| 222 | UInt scaledRange = m_uiRange << 15; |
---|
| 223 | for ( Int i = 0; i < 8; i++ ) |
---|
| 224 | { |
---|
| 225 | bins += bins; |
---|
| 226 | scaledRange >>= 1; |
---|
| 227 | if ( m_uiValue >= scaledRange ) |
---|
| 228 | { |
---|
| 229 | bins++; |
---|
| 230 | m_uiValue -= scaledRange; |
---|
| 231 | } |
---|
| 232 | } |
---|
| 233 | numBins -= 8; |
---|
| 234 | } |
---|
| 235 | |
---|
| 236 | m_bitsNeeded += numBins; |
---|
| 237 | m_uiValue <<= numBins; |
---|
| 238 | |
---|
| 239 | if ( m_bitsNeeded >= 0 ) |
---|
| 240 | { |
---|
[296] | 241 | #if !OL_FLUSH_ALIGN |
---|
[56] | 242 | m_uiLastByte = m_pcTComBitstream->readByte(); |
---|
| 243 | m_uiValue += m_uiLastByte << m_bitsNeeded; |
---|
| 244 | #else |
---|
| 245 | m_uiValue += m_pcTComBitstream->readByte() << m_bitsNeeded; |
---|
| 246 | #endif |
---|
| 247 | m_bitsNeeded -= 8; |
---|
| 248 | } |
---|
| 249 | |
---|
| 250 | UInt scaledRange = m_uiRange << ( numBins + 7 ); |
---|
| 251 | for ( Int i = 0; i < numBins; i++ ) |
---|
| 252 | { |
---|
| 253 | bins += bins; |
---|
| 254 | scaledRange >>= 1; |
---|
| 255 | if ( m_uiValue >= scaledRange ) |
---|
| 256 | { |
---|
| 257 | bins++; |
---|
| 258 | m_uiValue -= scaledRange; |
---|
| 259 | } |
---|
| 260 | } |
---|
| 261 | |
---|
| 262 | ruiBin = bins; |
---|
| 263 | } |
---|
| 264 | |
---|
[2] | 265 | Void |
---|
| 266 | TDecBinCABAC::decodeBinTrm( UInt& ruiBin ) |
---|
| 267 | { |
---|
| 268 | m_uiRange -= 2; |
---|
[56] | 269 | UInt scaledRange = m_uiRange << 7; |
---|
| 270 | if( m_uiValue >= scaledRange ) |
---|
[2] | 271 | { |
---|
| 272 | ruiBin = 1; |
---|
| 273 | } |
---|
| 274 | else |
---|
| 275 | { |
---|
| 276 | ruiBin = 0; |
---|
[56] | 277 | if ( scaledRange < ( 256 << 7 ) ) |
---|
[2] | 278 | { |
---|
[56] | 279 | m_uiRange = scaledRange >> 6; |
---|
| 280 | m_uiValue += m_uiValue; |
---|
| 281 | |
---|
| 282 | if ( ++m_bitsNeeded == 0 ) |
---|
| 283 | { |
---|
| 284 | m_bitsNeeded = -8; |
---|
[296] | 285 | #if !OL_FLUSH_ALIGN |
---|
[56] | 286 | m_uiLastByte = m_pcTComBitstream->readByte(); |
---|
| 287 | m_uiValue += m_uiLastByte; |
---|
| 288 | #else |
---|
| 289 | m_uiValue += m_pcTComBitstream->readByte(); |
---|
| 290 | #endif |
---|
| 291 | } |
---|
[2] | 292 | } |
---|
| 293 | } |
---|
| 294 | } |
---|
| 295 | |
---|
[56] | 296 | /** Reset BAC register values. |
---|
| 297 | * \returns Void |
---|
| 298 | */ |
---|
| 299 | Void TDecBinCABAC::resetBac() |
---|
[2] | 300 | { |
---|
[56] | 301 | m_uiRange = 510; |
---|
| 302 | m_bitsNeeded = -8; |
---|
| 303 | m_uiValue = m_pcTComBitstream->read( 16 ); |
---|
| 304 | } |
---|
| 305 | |
---|
| 306 | /** Decode subsequent_pcm_num. |
---|
| 307 | * \param numSubseqIPCM |
---|
| 308 | * \returns Void |
---|
| 309 | */ |
---|
| 310 | Void TDecBinCABAC::decodeNumSubseqIPCM( Int& numSubseqIPCM ) |
---|
| 311 | { |
---|
| 312 | UInt bit = 0; |
---|
| 313 | |
---|
| 314 | numSubseqIPCM = 0; |
---|
| 315 | |
---|
| 316 | do |
---|
| 317 | { |
---|
| 318 | m_uiValue += m_uiValue; |
---|
| 319 | if ( ++m_bitsNeeded >= 0 ) |
---|
| 320 | { |
---|
| 321 | m_bitsNeeded = -8; |
---|
[296] | 322 | #if !OL_FLUSH_ALIGN |
---|
[56] | 323 | m_uiLastByte = m_pcTComBitstream->readByte(); |
---|
| 324 | m_uiValue += m_uiLastByte; |
---|
| 325 | #else |
---|
| 326 | m_uiValue += m_pcTComBitstream->readByte(); |
---|
| 327 | #endif |
---|
| 328 | } |
---|
| 329 | bit = ((m_uiValue&128)>>7); |
---|
| 330 | numSubseqIPCM++; |
---|
| 331 | } |
---|
| 332 | while( bit && (numSubseqIPCM < 3 )); |
---|
| 333 | |
---|
| 334 | if( bit && (numSubseqIPCM == 3 )) |
---|
| 335 | { |
---|
| 336 | numSubseqIPCM++; |
---|
| 337 | } |
---|
| 338 | |
---|
| 339 | numSubseqIPCM --; |
---|
| 340 | } |
---|
| 341 | |
---|
| 342 | /** Decode PCM alignment zero bits. |
---|
| 343 | * \returns Void |
---|
| 344 | */ |
---|
| 345 | Void TDecBinCABAC::decodePCMAlignBits() |
---|
| 346 | { |
---|
| 347 | Int iNum = m_pcTComBitstream->getNumBitsUntilByteAligned(); |
---|
| 348 | |
---|
[2] | 349 | UInt uiBit = 0; |
---|
[56] | 350 | m_pcTComBitstream->read( iNum, uiBit ); |
---|
[2] | 351 | } |
---|
[56] | 352 | |
---|
| 353 | /** Read a PCM code. |
---|
| 354 | * \param uiLength code bit-depth |
---|
| 355 | * \param ruiCode pointer to PCM code value |
---|
| 356 | * \returns Void |
---|
| 357 | */ |
---|
| 358 | Void TDecBinCABAC::xReadPCMCode(UInt uiLength, UInt& ruiCode) |
---|
| 359 | { |
---|
| 360 | assert ( uiLength > 0 ); |
---|
| 361 | m_pcTComBitstream->read (uiLength, ruiCode); |
---|
| 362 | } |
---|
| 363 | //! \} |
---|