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
hexline.c
Package: celp_3.2a.tar.gz [view]
Upload User: szhypcb168
Upload Date: 2007-01-06
Package Size: 2187k
Code Size: 3k
Category:
Voice Compress
Development Platform:
Unix_Linux
- /**************************************************************************
- *
- * ROUTINE
- * puthex (pack an array of bits into a bitstream)
- *
- * FUNCTION
- * Input an array of bits and number of bits and the
- * program returns a pointer to a bitstream.
- *
- * SYNOPSIS
- * subroutine puthex(nb, bits, line)
- *
- * formal
- *
- * data I/O
- * name type type function
- * -------------------------------------------------------------------
- * nb int i number of bits
- * bits int i bit array
- * line char o packed character bitstream
- *
- ***************************************************************************
- *
- * DESCRIPTION
- *
- * This program packs an array of bits into a string of hex
- * characters where each character represents 4 bits. The
- * character stream is nb/4 characters long.
- *
- ***************************************************************************
- *
- * CALLED BY
- *
- * celp
- *
- * CALLS
- *
- *
- *
- **************************************************************************/
- #include <stdio.h>
- puthex(nb, bits, line)
- int nb, bits[];
- char line[];
- {
- int i, j;
- for (j = 0; j < nb;)
- {
- i = 0;
- do
- {
- i |= (bits[j]&1)<<(3 - j%4);
- } while (++j%4 != 0);
- sprintf(&line[j/4-1],"%X",i);
- }
- }
- /**************************************************************************
- *
- * ROUTINE
- * gethex (unpack a bitstream into an array of bits)
- *
- * FUNCTION
- * Input a pointer to a bitstream and number of bits,
- * program returns an array of bits.
- *
- * SYNOPSIS
- * subroutine gethex(nb, bits, line)
- *
- * formal
- *
- * data I/O
- * name type type function
- * -------------------------------------------------------------------
- * nb int i number of bits
- * bits int o bit array
- * line char i packed character bitstream
- *
- ***************************************************************************
- *
- * DESCRIPTION
- *
- * This routine takes a string of hex characters and unpacks
- * them into an array of bits, 4 bits for each character.
- *
- ***************************************************************************
- *
- * CALLED BY
- *
- * celp
- *
- * CALLS
- *
- *
- *
- **************************************************************************/
- gethex(nb, bits, line)
- int nb, bits[];
- char line[];
- {
- int i, j;
- for (j = 0; j < nb;)
- {
- sscanf(&line[j/4],"%1X",&i);
- do
- {
- bits[j] = ((int) (i & (1 << (3 - j%4))) != 0);
- } while (++j%4 != 0);
- }
- }