代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/169903/9833413
c mpeg2_loopback_main.c
/*
* Copyright 2003 by Texas Instruments Incorporated.
* All rights reserved. Property of Texas Instruments Incorporated.
* Restricted rights to use, duplicate or disclose this code are
*
www.eeworm.com/read/422013/10669424
h g711.h
#ifndef _G711_H_
#define _G711_H_
//其中一种实现
unsigned char ALawEncode(int pcm16);
int ALawDecode(unsigned char alaw);
//另一种实现
unsigned char linear2alaw ( int pcm_val);
int alaw2linear
www.eeworm.com/read/350397/10744336
cpp cvsubdivision2d.cpp
/*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying,
www.eeworm.com/read/349391/10829901
c mpeg2_loopback_main.c
/*
* Copyright 2003 by Texas Instruments Incorporated.
* All rights reserved. Property of Texas Instruments Incorporated.
* Restricted rights to use, duplicate or disclose this code are
*
www.eeworm.com/read/105767/7109026
h g711.h
#ifndef G711_H
#define G711_H
unsigned char linear2alaw(int pcm_val); /* 2's complement (16-bit range) */
int alaw2linear(unsigned char a_val);
unsigned char linear2ulaw(short pcm_val); /* 2's comp
www.eeworm.com/read/293555/7129104
c tst_cror.c
#include
void tst_cror (void) {
char a;
char b;
a = 0xA5;
b = _crol_(a,1); /* b now is 0xD2 */
}
void tst_iror (void) {
int a;
int b;
a = 0xA5A5;
b =
www.eeworm.com/read/454077/7401437
c mpeg2_loopback_main.c
/*
* Copyright 2003 by Texas Instruments Incorporated.
* All rights reserved. Property of Texas Instruments Incorporated.
* Restricted rights to use, duplicate or disclose this code are
*
www.eeworm.com/read/196292/8102000
h g711.h
#ifndef G711_H_INCLUDED
#define G711_H_INCLUDED
unsigned char linear2ulaw( int sample );
short ulaw2linear( unsigned char ulawbyte );
unsigned char linear2pcma( int sample );
int pcma2linear( unsign
www.eeworm.com/read/246953/12696161
c tst_cror.c
#include
void tst_cror (void) {
char a;
char b;
a = 0xA5;
b = _crol_(a,1); /* b now is 0xD2 */
}
void tst_iror (void) {
int a;
int b;
a = 0xA5A5;
b =
www.eeworm.com/read/245728/12783038
h byteordr.h
#if !defined(__BYTEORDR_H__)
#define __BYTEORDR_H__
unsigned long Net2HostLong(unsigned long l);
unsigned short Net2HostShort(unsigned short s);
unsigned long Host2NetLong(unsigned long l);
uns