mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
sync driver names with codec-cfg
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7175 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5f58739d75
commit
26c9b4ee5e
@ -32,9 +32,9 @@ 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;
|
||||
extern ad_functions_t mpcodecs_ad_libvorbis;
|
||||
extern ad_functions_t mpcodecs_ad_libmad;
|
||||
extern ad_functions_t mpcodecs_ad_real;
|
||||
extern ad_functions_t mpcodecs_ad_realaud;
|
||||
extern ad_functions_t mpcodecs_ad_libdv;
|
||||
|
||||
ad_functions_t* mpcodecs_ad_drivers[] =
|
||||
@ -64,13 +64,13 @@ ad_functions_t* mpcodecs_ad_drivers[] =
|
||||
&mpcodecs_ad_faad,
|
||||
#endif
|
||||
#ifdef HAVE_OGGVORBIS
|
||||
&mpcodecs_ad_vorbis,
|
||||
&mpcodecs_ad_libvorbis,
|
||||
#endif
|
||||
#ifdef USE_LIBMAD
|
||||
&mpcodecs_ad_libmad,
|
||||
#endif
|
||||
#ifdef USE_REALCODECS
|
||||
&mpcodecs_ad_real,
|
||||
&mpcodecs_ad_realaud,
|
||||
#endif
|
||||
#ifdef HAVE_LIBDV095
|
||||
&mpcodecs_ad_libdv,
|
||||
|
@ -16,7 +16,7 @@
|
||||
static ad_info_t info =
|
||||
{
|
||||
"AAC (MPEG2/4 Advanced Audio Coding)",
|
||||
"libfaad2",
|
||||
"faad",
|
||||
AFM_AAC,
|
||||
"Felix Buenemann",
|
||||
"faad2",
|
||||
|
@ -18,7 +18,7 @@ static ad_info_t info =
|
||||
"buggy"
|
||||
};
|
||||
|
||||
LIBAD_EXTERN(vorbis)
|
||||
LIBAD_EXTERN(libvorbis)
|
||||
|
||||
#include <vorbis/codec.h>
|
||||
|
||||
|
@ -14,14 +14,14 @@
|
||||
|
||||
static ad_info_t info = {
|
||||
"RealAudio decoder",
|
||||
"real",
|
||||
"realaud",
|
||||
AFM_REAL,
|
||||
"A'rpi",
|
||||
"Florian Schneider",
|
||||
"binary real audio codecs"
|
||||
};
|
||||
|
||||
LIBAD_EXTERN(real)
|
||||
LIBAD_EXTERN(realaud)
|
||||
|
||||
static void *handle=NULL;
|
||||
|
||||
|
@ -13,14 +13,14 @@
|
||||
|
||||
static vd_info_t info = {
|
||||
"RealVideo decoder",
|
||||
"real",
|
||||
"realvid",
|
||||
VFM_REAL,
|
||||
"Florian Schneider & A'rpi",
|
||||
"using original closed source codecs for Linux",
|
||||
"binary real video codecs"
|
||||
};
|
||||
|
||||
LIBVD_EXTERN(real)
|
||||
LIBVD_EXTERN(realvid)
|
||||
|
||||
|
||||
unsigned long (*rvyuv_custom_message)(unsigned long,unsigned long);
|
||||
|
Loading…
Reference in New Issue
Block a user