Mercurial > mplayer.hg
changeset 5454:c6252cfb68e2
ehh. vorbis support...
author | arpi |
---|---|
date | Mon, 01 Apr 2002 15:26:23 +0000 |
parents | 0e63c2f19ba6 |
children | 5546543ae874 |
files | libmpcodecs/ad.c |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/ad.c Mon Apr 01 15:25:50 2002 +0000 +++ b/libmpcodecs/ad.c Mon Apr 01 15:26:23 2002 +0000 @@ -31,6 +31,7 @@ extern ad_functions_t mpcodecs_ad_acm; extern ad_functions_t mpcodecs_ad_msgsm; extern ad_functions_t mpcodecs_ad_faad; +extern ad_functions_t mpcodecs_ad_vorbis; ad_functions_t* mpcodecs_ad_drivers[] = { @@ -56,7 +57,10 @@ &mpcodecs_ad_acm, #endif #ifdef HAVE_FAAD - &mpcodecs_ad_faad, + &mpcodecs_ad_faad, +#endif +#ifdef HAVE_OGGVORBIS + &mpcodecs_ad_vorbis, #endif NULL };