x265-1.7版本-common/framedata.cpp注释

注:问号以及未注释部分 会在x265-1.8版本内更新 

/*****************************************************************************
* Copyright (C) 2013 x265 project
*
* Author: Steve Borho <steve@borho.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
*
* This program is also available under a commercial proprietary license.
* For more information, contact us at license @ x265.com.
*****************************************************************************/

#include "framedata.h"
#include "picyuv.h"

using namespace x265;
/** 函数功能    :初始化
/*  调用范围    :只在Frame::allocEncodeData函数中被调用
*/
FrameData::FrameData()
{
    memset(this, 0, sizeof(*this));
}
/** 函数功能    :申请一帧CTU的存储空间,初始化CTU、初始化统计信息
/*  调用范围    :只在Frame::allocEncodeData函数中被调用
* \返回值       :申请空间成功为ture,否则为false
*/
bool FrameData::create(x265_param *param, const SPS& sps)
{
    m_param = param;    //获取配置参数
    m_slice  = new Slice;//实例化
    m_picCTU = new CUData[sps.numCUsInFrame];//申请一帧CTU个数的空间

    m_cuMemPool.create(0, param->internalCsp, sps.numCUsInFrame);//申请CTU内存空间
    for (uint32_t ctuAddr = 0; ctuAddr < sps.numCUsInFrame; ctuAddr++)
        m_picCTU[ctuAddr].initialize(m_cuMemPool, 0, param->internalCsp, ctuAddr);//初始化函数指针,获取CTU数据相应存储位置

    CHECKED_MALLOC(m_cuStat, RCStatCU, sps.numCUsInFrame);
    CHECKED_MALLOC(m_rowStat, RCStatRow, sps.numCuInHeight);
    reinit(sps);//初始化统计信息
    return true;

fail:
    return false;
}
/** 函数功能    :初始化统计信息为0
/*  调用范围    :只在FrameData::create和Frame::reinit函数中被调用
* \返回值       :null
*/
void FrameData::reinit(const SPS& sps)
{
    memset(m_cuStat, 0, sps.numCUsInFrame * sizeof(*m_cuStat));
    memset(m_rowStat, 0, sps.numCuInHeight * sizeof(*m_rowStat));
}
/** 函数功能    :释放内存
/*  调用范围    :只在Frame::destroy()和DPB::~DPB()函数中被调用
*/
void FrameData::destroy()
{
    delete [] m_picCTU;
    delete m_slice;
    delete m_saoParam;

    m_cuMemPool.destroy();

    X265_FREE(m_cuStat);
    X265_FREE(m_rowStat);
}


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值