mirror of https://github.com/mpv-player/mpv
ehh. vorbis support...
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5455 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8b9eea7eb0
commit
e698214de0
|
@ -31,6 +31,7 @@ extern ad_functions_t mpcodecs_ad_dshow;
|
|||
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 @@ ad_functions_t* mpcodecs_ad_drivers[] =
|
|||
&mpcodecs_ad_acm,
|
||||
#endif
|
||||
#ifdef HAVE_FAAD
|
||||
&mpcodecs_ad_faad,
|
||||
&mpcodecs_ad_faad,
|
||||
#endif
|
||||
#ifdef HAVE_OGGVORBIS
|
||||
&mpcodecs_ad_vorbis,
|
||||
#endif
|
||||
NULL
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue