- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
biterror.c
资源名称:celp32c.rar [点击查看]
上传用户:tsjrly
上传日期:2021-02-19
资源大小:107k
文件大小:2k
源码类别:
语音压缩
开发平台:
C/C++
- /**************************************************************************
- *
- * ROUTINE
- * biterror
- *
- * FUNCTION
- *
- * introduce random errors in CELP bitstream
- *
- * SYNOPSIS
- * biterror(ber,mask,stream,streambits,error,total)
- *
- * formal
- *
- * data I/O
- * name type type function
- * -------------------------------------------------------------------
- * ber float i bit error rate
- * mask int i error mask
- * stream short i/o array of binary bits to be corrupted
- * streambits int i number of bits in stream
- * error int o number of bits corrputed
- * total int o total number of bits through coder
- *
- ***************************************************************************
- *
- * CALLED BY
- *
- * celp
- *
- * CALLS
- *
- * random
- *
- ***************************************************************************
- *
- * DESCRIPTION
- * Bit errors are introduced into the array "stream" at a rate
- * "ber". Individual bits may be reversed while protecting others by
- * setting bits of the mask array which is read at the beginning of
- * execution.
- * To protect a bit set mask(bit) = 1. If this is
- * left at 0, the bit is subjected to reversal at the rate specified
- * by "ber". (The protection scheme above is NOT a function of the
- * Hamming error control coding.)
- *
- **************************************************************************/
- #include <stdio.h>
- biterror(ber, mask, stream, streambits, error, total)
- float ber;
- int mask[], streambits, *error, *total;
- short stream[];
- {
- float xx, rate;
- int i;
- /* protection mask: read in */
- rate = ber / 100.;
- for (i = 0; i < streambits; i++)
- {
- xx = (random2() + 32768) / 65535.;
- if (mask[i] == 0)
- {
- (*total)++;
- if (xx < rate)
- {
- stream[i] ^= 1;
- if (stream[i] != 0 && stream[i] != 1)
- {
- fprintf(stderr, "biterror: bit stream not ones and zerosn");
- exit(1);
- }
- (*error)++;
- }
- }
- }
- }