Home | History | Annotate | Download | only in host_src

Lines Matching refs:fc

110     FlipWord(&p->fc.wFormatTag);
111 FlipWord(&p->fc.nChannels);
112 FlipDWord(&p->fc.nSamplesPerSec);
113 FlipDWord(&p->fc.nAvgBytesPerSec);
114 FlipWord(&p->fc.nBlockAlign);
115 FlipWord(&p->fc.wBitsPerSample);
158 wFile->wh.fc.wFormatTag = 1;
159 wFile->wh.fc.nChannels = (EAS_U16) nChannels;
160 wFile->wh.fc.nSamplesPerSec = (EAS_U32) nSamplesPerSec;
161 wFile->wh.fc.wBitsPerSample = (EAS_U16) wBitsPerSample;
162 wFile->wh.fc.nBlockAlign = (EAS_U16) (nChannels * (EAS_U16) (wBitsPerSample / 8));
163 wFile->wh.fc.nAvgBytesPerSec = wFile->wh.fc.nBlockAlign * (EAS_U32) nSamplesPerSec;
374 if (fread(&wFile->wh.fc, sizeof(FMT_CHUNK), 1, wFile->file) != 1)