search for: hex2ascii

Displaying 3 results from an estimated 3 matches for "hex2ascii".

2010 Sep 06
0
encode and decode
...h that was encoded on a ds'pic with a NB 8 Kb/sec. we wrote a simple program using the API speex lib 1.2 beta 3: #include "stdafx.h" #include <iostream> #include <stdio.h> #include "speex.h" #include "speex_bits.h" using namespace std; char hex2ascii(char toconv); #define FRAME_SIZE 160 #define nbBytes 20 int main(int argc, _TCHAR* argv[]) { int mode = 3; int i=0,j=0; char ch=0; int in=0,temp=0; char out_ascii[640]={0}; float output[FRAME_SIZE];//the originals 160 words in float short out[FRAME_SIZE];//the originals 160 words char c...
2010 Sep 06
0
encoding on a ds'pic and decoding on a pc
...code speech that was encoded on a ds'pic with a NB 8 Kb/sec. we wrote a simple program using the API speex lib 1.2 beta 3: #include "stdafx.h" #include <iostream> #include <stdio.h> #include "speex.h" #include "speex_bits.h" using namespace std; char hex2ascii(char toconv); #define FRAME_SIZE 160 #define nbBytes 20 int main(int argc, _TCHAR* argv[]) { int mode = 3; int i=0,j=0; char ch=0; int in=0,temp=0; char out_ascii[640]={0}; float output[FRAME_SIZE];//the originals 160 words in float short out[FRAME_SIZE];//the originals 160 words char cbits[nbBytes...
2006 Jun 23
2
Getting a list of users in a group - how?
Hi all, Hopefully this is a simple one - I'm trying to work out how to get a list of users in a certain group. If I have the following set up in Active Directory: Group1 - UserA - UserB Group2 - UserC - UserD AllGroups - Group1 - Group2 - UserX Then I want to be able to say "List all users in the AllGroups group" and I should get UserA,B,C,D and UserX