1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-22 03:08:33 +00:00

OOOPS, miaaing ifdef.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1831 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2001-09-01 20:08:15 +00:00
parent 897670e751
commit fff31249bb

View File

@ -453,6 +453,7 @@ int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen){
len=MP3_DecodeFrame(buf,-1);
// len=MP3_DecodeFrame(buf,3);
break;
#ifdef HAVE_OGGVORBIS
case AFM_VORBIS: { // OggVorbis
/* note: good minlen would be 4k or 8k IMHO - atmos */
int ret;
@ -547,6 +548,7 @@ int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen){
} // from else, packetout ok
break;
#endif
}
case AFM_PCM: // AVI PCM
len=demux_read_data(sh_audio->ds,buf,minlen);