Ignore:
Timestamp:
13 Aug 2015, 17:38:13 (9 years ago)
Author:
tech
Message:

Merged 14.1-update-dev1@1312.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/Lib/TLibEncoder/TEncPreanalyzer.cpp

    r1179 r1313  
    22 * License, included below. This software may be subject to other third party
    33 * and contributor rights, including patent rights, and no such rights are
    4  * granted under this license. 
     4 * granted under this license.
    55 *
    6 * Copyright (c) 2010-2015, ITU/ISO/IEC
     6 * Copyright (c) 2010-2015, ITU/ISO/IEC
    77 * All rights reserved.
    88 *
     
    6565{
    6666  TComPicYuv* pcPicYuv = pcEPic->getPicYuvOrg();
    67   const Int iWidth = pcPicYuv->getWidth();
    68   const Int iHeight = pcPicYuv->getHeight();
    69   const Int iStride = pcPicYuv->getStride();
     67  const Int iWidth = pcPicYuv->getWidth(COMPONENT_Y);
     68  const Int iHeight = pcPicYuv->getHeight(COMPONENT_Y);
     69  const Int iStride = pcPicYuv->getStride(COMPONENT_Y);
    7070
    7171  for ( UInt d = 0; d < pcEPic->getMaxAQDepth(); d++ )
    7272  {
    73     const Pel* pLineY = pcPicYuv->getLumaAddr();
     73    const Pel* pLineY = pcPicYuv->getAddr(COMPONENT_Y);
    7474    TEncPicQPAdaptationLayer* pcAQLayer = pcEPic->getAQLayer(d);
    7575    const UInt uiAQPartWidth = pcAQLayer->getAQPartWidth();
Note: See TracChangeset for help on using the changeset viewer.