Skip to content

Commit

Permalink
删除pcm_mono_to_stereo无效代码
Browse files Browse the repository at this point in the history
  • Loading branch information
negier committed Dec 7, 2019
1 parent 1c0707a commit 01b3f7e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions Code/pcm_mono_to_stereo.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ void pcmMonoToStereo(const char* pcmPath,const char* newPcmPath){
return;
}

//为了获取文件大小
fseek(pcm,0L,SEEK_END);
long fileSize = ftell(pcm);
rewind(pcm);

FILE* newPcm = fopen(newPcmPath,"w");

int p;
Expand Down

0 comments on commit 01b3f7e

Please sign in to comment.