blob: b885548ee6d1abb5971dec41d160c7a832f1f799 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* dummy file to use xine mm_support function */
#include "xineutils.h"
#include "../dsputil.h"
/* Function to test if multimedia instructions are supported... */
int mm_support(void)
{
return xine_mm_accel();
}
#ifdef __TEST__
int main ( void )
{
int mm_flags;
mm_flags = mm_support();
printf("mm_support = 0x%08u\n",mm_flags);
return 0;
}
#endif
|