1
0
Fork 0
forked from len0rd/rockbox

Remove a function accidentally added back in r21841.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21853 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Magnus Holmgren 2009-07-14 07:53:57 +00:00
parent 0e2a93369e
commit fd6afc05f8

View file

@ -1554,12 +1554,6 @@ ogg_int64_t ov_raw_tell(OggVorbis_File *vf){
return(vf->offset);
}
/* return PCM offset (sample) of next PCM sample to be read */
ogg_int64_t ov_pcm_tell(OggVorbis_File *vf){
if(vf->ready_state<OPENED)return(OV_EINVAL);
return(vf->pcm_offset);
}
/* return time offset (milliseconds) of next PCM sample to be read */
ogg_int64_t ov_time_tell(OggVorbis_File *vf){
int link=0;