mirror of
https://github.com/mpv-player/mpv
synced 2025-01-11 09:29:29 +00:00
argh... Nick messed up driver names too
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5344 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b6ef6abbd5
commit
a823205f9f
@ -29,7 +29,7 @@ static ad_info_t info =
|
||||
""
|
||||
};
|
||||
|
||||
LIBAD_EXTERN(a52)
|
||||
LIBAD_EXTERN(liba52)
|
||||
|
||||
extern int audio_output_channels;
|
||||
|
||||
|
@ -6,19 +6,21 @@
|
||||
#include "mp_msg.h"
|
||||
#include "help_mp.h"
|
||||
|
||||
#ifdef USE_WIN32DLL
|
||||
|
||||
#include "ad_internal.h"
|
||||
|
||||
static ad_info_t info =
|
||||
{
|
||||
"Win32 ACM audio decoder",
|
||||
"msacm",
|
||||
"acm",
|
||||
AFM_ACM,
|
||||
"Nick Kurshev",
|
||||
"avifile.sf.net",
|
||||
""
|
||||
};
|
||||
|
||||
LIBAD_EXTERN(msacm)
|
||||
LIBAD_EXTERN(acm)
|
||||
|
||||
#include "dll_init.h"
|
||||
|
||||
@ -74,3 +76,4 @@ static int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int m
|
||||
{
|
||||
return acm_decode_audio(sh_audio,buf,minlen,maxlen);
|
||||
}
|
||||
#endif
|
||||
|
@ -6,6 +6,8 @@
|
||||
#include "mp_msg.h"
|
||||
#include "help_mp.h"
|
||||
|
||||
#ifdef USE_DIRECTSHOW
|
||||
|
||||
#include "ad_internal.h"
|
||||
|
||||
static ad_info_t info =
|
||||
@ -97,3 +99,4 @@ static int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int m
|
||||
// len=size_out;
|
||||
return size_out;
|
||||
}
|
||||
#endif
|
||||
|
@ -6,6 +6,8 @@
|
||||
#include "mp_msg.h"
|
||||
#include "help_mp.h"
|
||||
|
||||
#ifdef USE_LIBAVCODEC
|
||||
|
||||
#include "ad_internal.h"
|
||||
|
||||
#include "bswap.h"
|
||||
@ -104,3 +106,5 @@ static int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int m
|
||||
}
|
||||
return len;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -15,7 +15,7 @@ static ad_info_t info =
|
||||
"Optimized to MMX/SSE/3Dnow!"
|
||||
};
|
||||
|
||||
LIBAD_EXTERN(mp3)
|
||||
LIBAD_EXTERN(mp3lib)
|
||||
|
||||
#include "../mp3lib/mp3.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user