mirror of https://github.com/mpv-player/mpv
Rename some identifiers to not use leading underscores.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25890 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
f7906235ad
commit
e41ecd1a7e
|
@ -117,23 +117,23 @@ static int swap_fourcc __initdata = 0;
|
||||||
#if defined(__i386__)
|
#if defined(__i386__)
|
||||||
/* Ugly but only way */
|
/* Ugly but only way */
|
||||||
#undef AVOID_FPU
|
#undef AVOID_FPU
|
||||||
static double inline __FastSin(double x)
|
static inline double FastSin(double x)
|
||||||
{
|
{
|
||||||
register double res;
|
register double res;
|
||||||
__asm __volatile("fsin":"=t"(res):"0"(x));
|
__asm __volatile("fsin":"=t"(res):"0"(x));
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
#undef sin
|
#undef sin
|
||||||
#define sin(x) __FastSin(x)
|
#define sin(x) FastSin(x)
|
||||||
|
|
||||||
static double inline __FastCos(double x)
|
static inline double FastCos(double x)
|
||||||
{
|
{
|
||||||
register double res;
|
register double res;
|
||||||
__asm __volatile("fcos":"=t"(res):"0"(x));
|
__asm __volatile("fcos":"=t"(res):"0"(x));
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
#undef cos
|
#undef cos
|
||||||
#define cos(x) __FastCos(x)
|
#define cos(x) FastCos(x)
|
||||||
#else
|
#else
|
||||||
#include "generic_math.h"
|
#include "generic_math.h"
|
||||||
#endif /*__386__*/
|
#endif /*__386__*/
|
||||||
|
@ -381,10 +381,10 @@ static char *fourcc_format_name(int format)
|
||||||
#define OUTREG(addr,val) writel(val, (radeon_mmio_base)+addr)
|
#define OUTREG(addr,val) writel(val, (radeon_mmio_base)+addr)
|
||||||
#define OUTREGP(addr,val,mask) \
|
#define OUTREGP(addr,val,mask) \
|
||||||
do { \
|
do { \
|
||||||
unsigned int _tmp = INREG(addr); \
|
unsigned int tmp = INREG(addr); \
|
||||||
_tmp &= (mask); \
|
tmp &= (mask); \
|
||||||
_tmp |= (val); \
|
tmp |= (val); \
|
||||||
OUTREG(addr, _tmp); \
|
OUTREG(addr, tmp); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
static uint32_t radeon_vid_get_dbpp( void )
|
static uint32_t radeon_vid_get_dbpp( void )
|
||||||
|
@ -427,7 +427,7 @@ static __inline__ void radeon_engine_flush ( void )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static __inline__ void _radeon_fifo_wait (int entries)
|
static __inline__ void radeon_fifo_wait (int entries)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
@ -437,12 +437,12 @@ static __inline__ void _radeon_fifo_wait (int entries)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static __inline__ void _radeon_engine_idle ( void )
|
static __inline__ void radeon_engine_idle ( void )
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
/* ensure FIFO is empty before waiting for idle */
|
/* ensure FIFO is empty before waiting for idle */
|
||||||
_radeon_fifo_wait (64);
|
radeon_fifo_wait (64);
|
||||||
|
|
||||||
for (i=0; i<2000000; i++) {
|
for (i=0; i<2000000; i++) {
|
||||||
if (((INREG(RBBM_STATUS) & GUI_ACTIVE)) == 0) {
|
if (((INREG(RBBM_STATUS) & GUI_ACTIVE)) == 0) {
|
||||||
|
@ -452,9 +452,6 @@ static __inline__ void _radeon_engine_idle ( void )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#define radeon_engine_idle() _radeon_engine_idle()
|
|
||||||
#define radeon_fifo_wait(entries) _radeon_fifo_wait(entries)
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
static void __init radeon_vid_save_state( void )
|
static void __init radeon_vid_save_state( void )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue