qt: playlist: use item title if available
[vlc.git] / contrib / src / goom / goom2k4-noxmmx.patch
blob5525cc6cab0d5ab946e421c243a69efcb18bb4df
1 --- goom/src/plugin_info.c 2005-02-07 14:46:41.000000000 +0100
2 +++ goom.new/src/plugin_info.c 2011-01-23 15:37:37.524184437 +0100
3 @@ -31,6 +31,7 @@
4 /* p->methods.create_output_with_brightness = create_output_with_brightness;*/
6 #ifdef CPU_X86
7 +#if 0
8 if (cpuFlavour & CPU_OPTION_XMMX) {
9 #ifdef VERBOSE
10 printf ("Extented MMX detected. Using the fastest methods !\n");
11 @@ -38,7 +39,8 @@
12 p->methods.draw_line = draw_line_mmx;
13 p->methods.zoom_filter = zoom_filter_xmmx;
15 - else if (cpuFlavour & CPU_OPTION_MMX) {
16 +#endif
17 + if (cpuFlavour & CPU_OPTION_MMX) {
18 #ifdef VERBOSE
19 printf ("MMX detected. Using fast methods !\n");
20 #endif
21 --- goom/src/xmmx.c.no-xmmx 2005-02-07 14:46:41.000000000 +0100
22 +++ goom/src/xmmx.c 2018-05-18 15:04:47.031571100 +0200
23 @@ -26,6 +26,7 @@ int xmmx_supported (void) {
24 return (mm_support()&0x8)>>3;
27 +#if 0
28 void zoom_filter_xmmx (int prevX, int prevY,
29 Pixel *expix1, Pixel *expix2,
30 int *lbruS, int *lbruD, int buffratio,
31 @@ -389,5 +390,5 @@ void draw_line_xmmx (Pixel *data, int x1
32 end_of_line:
33 __asm__ __volatile__ ("femms\n");
36 +#endif /* 0 */
37 #endif