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
imdct_timing.c
Package: dvd-munitions.tar.gz [view]
Upload User: aoeyumen
Upload Date: 2007-01-06
Package Size: 3329k
Code Size: 1k
Category:
DVD
Development Platform:
Unix_Linux
- /*
- * bitstream_test.c
- *
- * Aaron Holtzman - May 1999
- *
- */
- #include <stdio.h>
- #include "ac3.h"
- #include "decode.h"
- #include "bitstream.h"
- #include "imdct.h"
- #include "timing.h"
- float i_buf[256];
- float o_buf[512];
- void imdct_do_512(float x[],float y[]);
- void imdct_do_256(float x[],float y[]);
- void main(int argc,char *argv[])
- {
- i_buf[80] = 1.0;
- i_buf[40] = 0.8;
- i_buf[20] = 0.3;
- imdct_init();
- timing_init();
- timing_test_2(imdct_do_512,i_buf,o_buf,"imdct_do_512");
- timing_test_2(imdct_do_256,i_buf,o_buf,"imdct_do_256");
- }