📄 transfrm.cc
字号:
/* transfrm.c, forward / inverse transformation *//* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. *//* Modifications and enhancements (C) 2000/2001 Andrew Stevens *//* These modifications are 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., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * */#include <config.h>#include <stdio.h>#include <math.h>#include "mpeg2syntaxcodes.h"#include "macroblock.hh"#include "picture.hh"#include "encoderparams.hh"#include "transfrm_ref.h"void MacroBlock::Transform(){ uint8_t **cur = picture->org_img; uint8_t **pred = picture->pred; // assert( dctblocks == &blocks[k*block_count]); int i = TopleftX(); int j = TopleftY(); int blocktopleft = j*picture->encparams.phy_width+i; field_dct = ! picture->frame_pred_dct && picture->pict_struct == FRAME_PICTURE && (*pfield_dct_best)( &cur[0][blocktopleft], &pred[0][blocktopleft], picture->encparams.phy_width); int i1, j1, n, cc, offs, lx; for (n=0; n<BLOCK_COUNT; n++) { cc = (n<4) ? 0 : (n&1)+1; /* color component index */ if (cc==0) { /* A.Stevens Jul 2000 Record dct blocks associated * with macroblock We'll use this for quantisation * calculations */ /* luminance */ if ((picture->pict_struct==FRAME_PICTURE) && field_dct) { /* field DCT */ lx = picture->encparams.phy_width<<1; offs = i + ((n&1)<<3) + picture->encparams.phy_width*(j+((n&2)>>1)); } else { /* frame DCT */ lx = picture->encparams.phy_width2; offs = i + ((n&1)<<3) + lx*(j+((n&2)<<2)); } if (picture->pict_struct==BOTTOM_FIELD) offs += picture->encparams.phy_width; } else { /* chrominance */ /* scale coordinates */ i1 = i>>1; j1 = j>>1;#ifdef NO_NON_420_SUPPORT if(picture->pict_struct==FRAME_PICTURE) && field_dct && (CHROMA420!=CHROMA420)) { /* field DCT */ lx = picture->encparams.phy_chrom_width<<1; offs = i1 + (n&8) + picture->encparams.phy_chrom_width*(j1+((n&2)>>1)); } else#endif { /* frame DCT */ lx = picture->encparams.phy_chrom_width2; offs = i1 + (n&8) + lx*(j1+((n&2)<<2)); } if (picture->pict_struct==BOTTOM_FIELD) offs += picture->encparams.phy_chrom_width; } psub_pred(pred[cc]+offs,cur[cc]+offs,lx, dctblocks[n]); pfdct(dctblocks[n]); } }/* subtract prediction and transform prediction error */void transform( Picture *picture ){ vector<MacroBlock>::iterator mbi; for( mbi = picture->mbinfo.begin(); mbi < picture->mbinfo.end(); ++mbi) { mbi->Transform(); }}void MacroBlock::ITransform(){ uint8_t **cur = picture->rec_img; uint8_t **pred = picture->pred; int i1, j1, n, cc, offs, lx; int i = TopleftX(); int j = TopleftY(); for (n=0; n<BLOCK_COUNT; n++) { cc = (n<4) ? 0 : (n&1)+1; /* color component index */ if (cc==0) { /* luminance */ if ((picture->pict_struct==FRAME_PICTURE) && field_dct) { /* field DCT */ lx = picture->encparams.phy_width<<1; offs = i + ((n&1)<<3) + picture->encparams.phy_width*(j+((n&2)>>1)); } else { /* frame DCT */ lx = picture->encparams.phy_width2; offs = i + ((n&1)<<3) + lx*(j+((n&2)<<2)); } if (picture->pict_struct==BOTTOM_FIELD) offs += picture->encparams.phy_width; } else { /* chrominance */ /* scale coordinates */ i1 = i>>1; j1 = j>>1;#ifdef NO_NON_420_SUPPORT if ((picture->pict_struct==FRAME_PICTURE) && field_dct && (CHROMA420!=CHROMA420)) { /* field DCT */ lx = picture->encparams.phy_chrom_width<<1; offs = i1 + (n&8) + picture->encparams.phy_chrom_width*(j1+((n&2)>>1)); } else#endif { /* frame DCT */ lx = picture->encparams.phy_chrom_width2; offs = i1 + (n&8) + lx*(j1+((n&2)<<2)); } if (picture->pict_struct==BOTTOM_FIELD) offs += picture->encparams.phy_chrom_width; } pidct(qdctblocks[n]); padd_pred(pred[cc]+offs,cur[cc]+offs,lx,qdctblocks[n]); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -