Home | History | Annotate | Download | only in src

Lines Matching full:fbytes

229     unsigned char *fbytes;
597 fbytes = (unsigned char*)malloc(max_frame_size*channels*sizeof(short));
685 err = fread(fbytes, sizeof(short)*channels, frame_size-remaining, fin);
691 s=fbytes[2*i+1]<<8|fbytes[2*i];
803 fbytes[2*i]=s&0xFF;
804 fbytes[2*i+1]=(s>>8)&0xFF;
806 if (fwrite(fbytes, sizeof(short)*channels, output_samples-skip, fout) != (unsigned)(output_samples-skip)){
883 free(fbytes);