Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
idct.c
Package: dvd-munitions.tar.gz [view]
Upload User: aoeyumen
Upload Date: 2007-01-06
Package Size: 3329k
Code Size: 6k
Category:
DVD
Development Platform:
Unix_Linux
- /*
- * idct.c
- *
- * Copyright (C) Aaron Holtzman <aholtzma@ess.engr.uvic.ca> - Nov 1999
- *
- * Portions of this code are from the MPEG software simulation group
- * idct implementation. This code will be replaced with a new
- * implementation soon.
- *
- * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
- *
- * mpeg2dec 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, or (at your option)
- * any later version.
- *
- * mpeg2dec 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 GNU Make; see the file COPYING. If not, write to
- * the Free Software Foundation,
- *
- */
- /**********************************************************/
- /* inverse two dimensional DCT, Chen-Wang algorithm */
- /* (cf. IEEE ASSP-32, pp. 803-816, Aug. 1984) */
- /* 32-bit integer arithmetic (8 bit coefficients) */
- /* 11 mults, 29 adds per DCT */
- /* sE, 18.8.91 */
- /**********************************************************/
- /* coefficients extended to 12 bit for IEEE1180-1990 */
- /* compliance sE, 2.1.94 */
- /**********************************************************/
- /* this code assumes >> to be a two's-complement arithmetic */
- /* right shift: (-2)>>1 == -1 , (-3)>>1 == -2 */
- #include <stdio.h>
- #include "config.h"
- #include "mpeg2.h"
- #include "mpeg2_internal.h"
- #include "mb_buffer.h"
- #include "idct.h"
- #include "idct_mmx.h"
- #define W1 2841 /* 2048*sqrt(2)*cos(1*pi/16) */
- #define W2 2676 /* 2048*sqrt(2)*cos(2*pi/16) */
- #define W3 2408 /* 2048*sqrt(2)*cos(3*pi/16) */
- #define W5 1609 /* 2048*sqrt(2)*cos(5*pi/16) */
- #define W6 1108 /* 2048*sqrt(2)*cos(6*pi/16) */
- #define W7 565 /* 2048*sqrt(2)*cos(7*pi/16) */
- // idct main entry point
- void (*idct)(mb_buffer_t *mb_buffer);
- // private prototypes
- static void idct_row(sint_16 *blk);
- static void idct_col(sint_16 *blk);
- static void idct_c(mb_buffer_t *mb_buffer);
- // Clamp to [-256,255]
- static sint_16 clip_tbl[1024]; /* clipping table */
- static sint_16 *clip;
- void
- idct_init(void)
- {
- sint_32 i;
- clip = clip_tbl + 512;
- for (i= -512; i< 512; i++)
- clip[i] = (i < -256) ? -256 : ((i > 255) ? 255 : i);
- #ifdef __i386__
- if(config.flags & MPEG2_MMX_ENABLE)
- idct = idct_mmx;
- else
- #endif
- idct = idct_c;
- }
- /* row (horizontal) IDCT
- *
- * 7 pi 1
- * dst[k] = sum c[l] * src[l] * cos( -- * ( k + - ) * l )
- * l=0 8 2
- *
- * where: c[0] = 128
- * c[1..7] = 128*sqrt(2)
- */
- static void idct_row(sint_16 *blk)
- {
- sint_32 x0, x1, x2, x3, x4, x5, x6, x7, x8;
- x1 = blk[4]<<11;
- x2 = blk[6];
- x3 = blk[2];
- x4 = blk[1];
- x5 = blk[7];
- x6 = blk[5];
- x7 = blk[3];
- #if 0
- /* shortcut */
- if (!(x1 | x2 | x3 | x4 | x5 | x6 | x7 ))
- {
- blk[0]=blk[1]=blk[2]=blk[3]=blk[4]=blk[5]=blk[6]=blk[7]=blk[0]<<3;
- return;
- }
- #endif
- x0 = (blk[0]<<11) + 128; /* for proper rounding in the fourth stage */
- /* first stage */
- x8 = W7*(x4+x5);
- x4 = x8 + (W1-W7)*x4;
- x5 = x8 - (W1+W7)*x5;
- x8 = W3*(x6+x7);
- x6 = x8 - (W3-W5)*x6;
- x7 = x8 - (W3+W5)*x7;
- /* second stage */
- x8 = x0 + x1;
- x0 -= x1;
- x1 = W6*(x3+x2);
- x2 = x1 - (W2+W6)*x2;
- x3 = x1 + (W2-W6)*x3;
- x1 = x4 + x6;
- x4 -= x6;
- x6 = x5 + x7;
- x5 -= x7;
- /* third stage */
- x7 = x8 + x3;
- x8 -= x3;
- x3 = x0 + x2;
- x0 -= x2;
- x2 = (181*(x4+x5)+128)>>8;
- x4 = (181*(x4-x5)+128)>>8;
- /* fourth stage */
- blk[0] = (x7+x1)>>8;
- blk[1] = (x3+x2)>>8;
- blk[2] = (x0+x4)>>8;
- blk[3] = (x8+x6)>>8;
- blk[4] = (x8-x6)>>8;
- blk[5] = (x0-x4)>>8;
- blk[6] = (x3-x2)>>8;
- blk[7] = (x7-x1)>>8;
- }
- /* column (vertical) IDCT
- *
- * 7 pi 1
- * dst[8*k] = sum c[l] * src[8*l] * cos( -- * ( k + - ) * l )
- * l=0 8 2
- *
- * where: c[0] = 1/1024
- * c[1..7] = (1/1024)*sqrt(2)
- */
- /* FIXME something odd is going on with inlining this
- * procedure. Things break if it isn't inlined */
- static void idct_col(sint_16 *blk)
- {
- int x0, x1, x2, x3, x4, x5, x6, x7, x8;
- /* shortcut */
- x1 = (blk[8*4]<<8);
- x2 = blk[8*6];
- x3 = blk[8*2];
- x4 = blk[8*1];
- x5 = blk[8*7];
- x6 = blk[8*5];
- x7 = blk[8*3];
- #if 0
- if (!(x1 | x2 | x3 | x4 | x5 | x6 | x7 ))
- {
- blk[8*0]=blk[8*1]=blk[8*2]=blk[8*3]=blk[8*4]=blk[8*5]=blk[8*6]=blk[8*7]=
- clip[(blk[8*0]+32)>>6];
- return;
- }
- #endif
- x0 = (blk[8*0]<<8) + 8192;
- /* first stage */
- x8 = W7*(x4+x5) + 4;
- x4 = (x8+(W1-W7)*x4)>>3;
- x5 = (x8-(W1+W7)*x5)>>3;
- x8 = W3*(x6+x7) + 4;
- x6 = (x8-(W3-W5)*x6)>>3;
- x7 = (x8-(W3+W5)*x7)>>3;
- /* second stage */
- x8 = x0 + x1;
- x0 -= x1;
- x1 = W6*(x3+x2) + 4;
- x2 = (x1-(W2+W6)*x2)>>3;
- x3 = (x1+(W2-W6)*x3)>>3;
- x1 = x4 + x6;
- x4 -= x6;
- x6 = x5 + x7;
- x5 -= x7;
- /* third stage */
- x7 = x8 + x3;
- x8 -= x3;
- x3 = x0 + x2;
- x0 -= x2;
- x2 = (181*(x4+x5)+128)>>8;
- x4 = (181*(x4-x5)+128)>>8;
- /* fourth stage */
- blk[8*0] = clip[(x7+x1)>>14];
- blk[8*1] = clip[(x3+x2)>>14];
- blk[8*2] = clip[(x0+x4)>>14];
- blk[8*3] = clip[(x8+x6)>>14];
- blk[8*4] = clip[(x8-x6)>>14];
- blk[8*5] = clip[(x0-x4)>>14];
- blk[8*6] = clip[(x3-x2)>>14];
- blk[8*7] = clip[(x7-x1)>>14];
- }
- void
- idct_c(mb_buffer_t *mb_buffer)
- {
- uint_32 i,j,k;
- sint_16 *blk;
- macroblock_t *mb = mb_buffer->macroblocks;
- uint_32 num_blocks = mb_buffer->num_blocks;
- for(k=0;k<num_blocks;k++)
- {
- if(mb[k].skipped)
- continue;
- //XXX only 4:2:0 supported here
- for(i=0;i<4;i++)
- {
- blk = mb[k].y_blocks + 64*i;
- if(mb[k].coded_block_pattern & (0x20 >> i))
- {
- for (j=0; j<8; j++)
- idct_row(blk + 8*j);
- for (j=0; j<8; j++)
- idct_col(blk + j);
- }
- }
- if(mb[k].coded_block_pattern & 0x2)
- {
- blk = mb[k].cr_blocks;
- for (j=0; j<8; j++)
- idct_row(blk + 8*j);
- for (j=0; j<8; j++)
- idct_col(blk + j);
- }
- if(mb[k].coded_block_pattern & 0x1)
- {
- blk = mb[k].cb_blocks;
- for (j=0; j<8; j++)
- idct_row(blk + 8*j);
- for (j=0; j<8; j++)
- idct_col(blk + j);
- }
- }
- }