Searched refs:pcm_bytes (Results 1 - 2 of 2) sorted by last modified time

/external/libopus/doc/
H A Dtrivial_example.c114 unsigned char pcm_bytes[MAX_FRAME_SIZE*CHANNELS*2]; local
118 fread(pcm_bytes, sizeof(short)*CHANNELS, FRAME_SIZE, fin);
123 in[i]=pcm_bytes[2*i+1]<<8|pcm_bytes[2*i];
148 pcm_bytes[2*i]=out[i]&0xFF;
149 pcm_bytes[2*i+1]=(out[i]>>8)&0xFF;
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout);
/external/chromium_org/third_party/opus/src/doc/
H A Dtrivial_example.c114 unsigned char pcm_bytes[MAX_FRAME_SIZE*CHANNELS*2]; local
118 fread(pcm_bytes, sizeof(short)*CHANNELS, FRAME_SIZE, fin);
123 in[i]=pcm_bytes[2*i+1]<<8|pcm_bytes[2*i];
148 pcm_bytes[2*i]=out[i]&0xFF;
149 pcm_bytes[2*i+1]=(out[i]>>8)&0xFF;
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout);

Completed in 139 milliseconds