]> git.sesse.net Git - vlc/blob - contrib/src/goom/goom2k4-noxmmx.patch
avcodec: Always output frames
[vlc] / contrib / src / goom / goom2k4-noxmmx.patch
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;*/
5  
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;
14         }
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