mirror of
https://github.com/mpv-player/mpv
synced 2024-12-11 09:25:56 +00:00
66f4e56389
-- Support for runtime cpu detection -- Stand alone compile of libaf -- Unlimited number of channels (compiletime switch) -- Sample format defined by bit-fields -- New formats: float, A-Law and mu-law -- Format conversion set in human readable format i.e. format=4:us_be to set 32 bit unsigned big endian output -- Format reporting in human readable format -- Volume control has only one parameter for setting the volume i.e. volume=-10.0:1:0:1 to set atenuation = -10dB git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8168 b3059339-0415-0410-9bf9-f77b7e298cf2
27 lines
678 B
C
27 lines
678 B
C
/* Include file for mplayer specific defines and includes */
|
|
#ifndef __af_mp_h__
|
|
#define __af_mp_h__
|
|
|
|
#include "../config.h"
|
|
#include "../mp_msg.h"
|
|
#include "../cpudetect.h"
|
|
#include "../libao2/afmt.h"
|
|
|
|
/* Set the initialization type from mplayers cpudetect */
|
|
#ifdef AF_INIT_TYPE
|
|
#undef AF_INIT_TYPE
|
|
#define AF_INIT_TYPE \
|
|
((gCpuCaps.has3DNow || gCpuCaps.hasSSE)?AF_INIT_FAST:AF_INIT_SLOW)
|
|
#endif
|
|
|
|
#ifdef af_msg
|
|
#undef af_msg
|
|
#endif
|
|
#define af_msg(lev, args... ) \
|
|
mp_msg(MSGT_AFILTER,((lev<0)?(lev+3):((lev==0)?MSGL_INFO:(lev+5))), args ## )
|
|
|
|
/* Decodes the format from mplayer format to libaf format */
|
|
extern int af_format_decode(int format);
|
|
|
|
#endif /* __af_mp_h__ */
|