aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Visualization/vis_avs/r_blur.cpp
blob: 77645dc9d73c8e7230965dc4112fd8e5c97d06a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
/*
  LICENSE
  -------
Copyright 2005 Nullsoft, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met:

  * Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer. 

  * Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution. 

  * Neither the name of Nullsoft nor the names of its contributors may be used to 
    endorse or promote products derived from this software without specific prior written permission. 
 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR 
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

*/
// alphachannel safe 11/21/99

#include <windows.h>
#include <commctrl.h>
#include "r_defs.h"
#include "resource.h"

#include "timing.h"
#include "../Agave/Language/api_language.h"


#ifndef LASER

#define C_THISCLASS C_BlurClass
#define MOD_NAME "Trans / Blur"

static const int zero=0;

class C_THISCLASS : public C_RBASE2 {
	protected:
	public:
		C_THISCLASS();
		virtual ~C_THISCLASS();
		virtual int render(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h);
		virtual char *get_desc() { static char desc[128]; return (!desc[0]?WASABI_API_LNGSTRING_BUF(IDS_TRANS_BLUR,desc,128):desc); }
		virtual HWND conf(HINSTANCE hInstance, HWND hwndParent);
		virtual void load_config(unsigned char *data, int len);
		virtual int  save_config(unsigned char *data);

    virtual int smp_getflags() { return 1; }
		virtual int smp_begin(int max_threads, char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h); 
    virtual void smp_render(int this_thread, int max_threads, char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h); 
    virtual int smp_finish(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h); // return value is that of render() for fbstuff etc

    int enabled;

    int roundmode;
};

#define PUT_INT(y) data[pos]=(y)&255; data[pos+1]=(y>>8)&255; data[pos+2]=(y>>16)&255; data[pos+3]=(y>>24)&255
#define GET_INT() (data[pos]|(data[pos+1]<<8)|(data[pos+2]<<16)|(data[pos+3]<<24))
void C_THISCLASS::load_config(unsigned char *data, int len)
{
	int pos=0;
	if (len-pos >= 4) { enabled=GET_INT(); pos+=4; }
	if (len-pos >= 4) { roundmode=GET_INT(); pos+=4; }
  else roundmode=0;
}
int  C_THISCLASS::save_config(unsigned char *data)
{
	int pos=0;
	PUT_INT(enabled); pos+=4;
	PUT_INT(roundmode); pos+=4;
	return pos;
}




C_THISCLASS::C_THISCLASS()
{
  roundmode=0;
  enabled=1;
}

C_THISCLASS::~C_THISCLASS()
{
}

#define MASK_SH1 (~(((1<<7)|(1<<15)|(1<<23))<<1))
#define MASK_SH2 (~(((3<<6)|(3<<14)|(3<<22))<<2))
#define MASK_SH3 (~(((7<<5)|(7<<13)|(7<<21))<<3))
#define MASK_SH4 (~(((15<<4)|(15<<12)|(15<<20))<<4))
static unsigned int mmx_mask1[2]={MASK_SH1,MASK_SH1};
static unsigned int mmx_mask2[2]={MASK_SH2,MASK_SH2};
static unsigned int mmx_mask3[2]={MASK_SH3,MASK_SH3};
static unsigned int mmx_mask4[2]={MASK_SH4,MASK_SH4};

#define DIV_2(x) ((( x ) & MASK_SH1)>>1)
#define DIV_4(x) ((( x ) & MASK_SH2)>>2)
#define DIV_8(x) ((( x ) & MASK_SH3)>>3)
#define DIV_16(x) ((( x ) & MASK_SH4)>>4)


void C_THISCLASS::smp_render(int this_thread, int max_threads, char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h)
{
  if (!enabled) return;

  timingEnter(0);

	unsigned int *f = (unsigned int *) framebuffer;
  unsigned int *of = (unsigned int *) fbout;

  if (max_threads < 1) max_threads=1;

  int start_l = ( this_thread * h ) / max_threads;
  int end_l;

  if (this_thread >= max_threads - 1) end_l = h;
  else end_l = ( (this_thread+1) * h ) / max_threads;  

  int outh=end_l-start_l;
  if (outh<1) return;

  int skip_pix=start_l*w;

  f += skip_pix;
  of+= skip_pix;

  int at_top=0, at_bottom=0;

  if (!this_thread) at_top=1;
  if (this_thread >= max_threads - 1) at_bottom=1;

  if (enabled == 2) 
  {
    // top line
    if (at_top)
    {
      unsigned int *f2=f+w;
      int x;
      int adj_tl=0, adj_tl2=0;
      if (roundmode) { adj_tl = 0x03030303; adj_tl2 = 0x04040404; }
      // top left
      *of++=DIV_2(f[0])+DIV_4(f[0])+DIV_8(f[1])+DIV_8(f2[0]) + adj_tl; f++; f2++;
	    // top center
      x=(w-2)/4;
	    while (x--)
	    {
		    of[0]=DIV_2(f[0]) + DIV_8(f[0]) + DIV_8(f[1]) + DIV_8(f[-1]) + DIV_8(f2[0]) + adj_tl2;
		    of[1]=DIV_2(f[1]) + DIV_8(f[1]) + DIV_8(f[2]) + DIV_8(f[0]) + DIV_8(f2[1]) + adj_tl2;
		    of[2]=DIV_2(f[2]) + DIV_8(f[2]) + DIV_8(f[3]) + DIV_8(f[1]) + DIV_8(f2[2]) + adj_tl2;
		    of[3]=DIV_2(f[3]) + DIV_8(f[3]) + DIV_8(f[4]) + DIV_8(f[2]) + DIV_8(f2[3]) + adj_tl2;
        f+=4;
        f2+=4;
        of+=4;
	    }
      x=(w-2)&3;
	    while (x--)
	    {
		    *of++=DIV_2(f[0]) + DIV_8(f[0]) + DIV_8(f[1]) + DIV_8(f[-1]) + DIV_8(f2[0]) + adj_tl2;
        f++;
        f2++;
      }
      // top right
      *of++=DIV_2(f[0])+DIV_4(f[0]) + DIV_8(f[-1])+DIV_8(f2[0]) + adj_tl; f++; f2++;
    }


	  // middle block
    {
      int y=outh-at_top-at_bottom;
      unsigned int adj_tl1=0,adj_tl2=0;
      unsigned __int64 adj2=0;
      if (roundmode) { adj_tl1=0x04040404; adj_tl2=0x05050505; adj2=0x0505050505050505i64; }
      while (y--)
      {
        int x;
        unsigned int *f2=f+w;
        unsigned int *f3=f-w;
      
        // left edge
        *of++=DIV_2(f[0])+DIV_8(f[0])+DIV_8(f[1])+DIV_8(f2[0])+DIV_8(f3[0])+adj_tl1; f++; f2++; f3++;

        // middle of line
#ifdef NO_MMX
        x=(w-2)/4;
        if (roundmode)
        {
	        while (x--)
	        {
		        of[0]=DIV_2(f[0]) + DIV_4(f[0]) + DIV_16(f[1]) + DIV_16(f[-1]) + DIV_16(f2[0]) + DIV_16(f3[0]) + 0x05050505;
		        of[1]=DIV_2(f[1]) + DIV_4(f[1]) + DIV_16(f[2]) + DIV_16(f[0]) + DIV_16(f2[1]) + DIV_16(f3[1]) + 0x05050505;
		        of[2]=DIV_2(f[2]) + DIV_4(f[2]) + DIV_16(f[3]) + DIV_16(f[1]) + DIV_16(f2[2]) + DIV_16(f3[2]) + 0x05050505;
		        of[3]=DIV_2(f[3]) + DIV_4(f[3]) + DIV_16(f[4]) + DIV_16(f[2]) + DIV_16(f2[3]) + DIV_16(f3[3]) + 0x05050505;
            f+=4;
            f2+=4;
            f3+=4;
            of+=4;
          }
        }
        else
        {
	        while (x--)
	        {
		        of[0]=DIV_2(f[0]) + DIV_4(f[0]) + DIV_16(f[1]) + DIV_16(f[-1]) + DIV_16(f2[0]) + DIV_16(f3[0]);
		        of[1]=DIV_2(f[1]) + DIV_4(f[1]) + DIV_16(f[2]) + DIV_16(f[0]) + DIV_16(f2[1]) + DIV_16(f3[1]);
		        of[2]=DIV_2(f[2]) + DIV_4(f[2]) + DIV_16(f[3]) + DIV_16(f[1]) + DIV_16(f2[2]) + DIV_16(f3[2]);
		        of[3]=DIV_2(f[3]) + DIV_4(f[3]) + DIV_16(f[4]) + DIV_16(f[2]) + DIV_16(f2[3]) + DIV_16(f3[3]);
            f+=4;
            f2+=4;
            f3+=4;
            of+=4;
          }
        }
#else
        {
          __asm 
          {
            mov ecx, w
            mov edx, ecx
            mov ebx, edx
            neg ebx
            mov esi, f
            mov edi, of
            sub ecx, 2
            shr ecx, 2
            movq mm1, [esi-4]
            align 16
mmx_light_blur_loop:
            movq mm0, [esi]

            movq mm2, [esi+4]
            pand mm0, mmx_mask1

            movq mm5, mm2
            psrl mm0, 1

            movq mm7, [esi+8]
            movq mm4, mm0

            pand mm1, mmx_mask4
            pand mm4, mmx_mask1

            movq mm3, [esi+edx*4]
            psrl mm4, 1
           
            paddb mm0, mm4
            pand mm2, mmx_mask4

            movq mm4, [esi+ebx*4]
            pand mm3, mmx_mask4

            pand mm4, mmx_mask4

            psrl mm1, 4
            pand mm7, mmx_mask1

            movq mm6, [esi+12]

            psrl mm2, 4
            add esi, 16

            psrl mm3, 4

            paddb mm0, mm1
            psrl mm4, 4

            movq mm1, mm6
            psrl mm7, 1

            paddb mm2, mm3
            paddb mm0, mm4

            movq mm3, [esi+edx*4-8]
            paddb mm0, mm2

            movq mm4, [esi+ebx*4-8]
            paddb mm0, [adj2]

            pand mm6, mmx_mask4

            movq [edi],mm0
            pand mm5, mmx_mask4

            movq mm0, mm7
            pand mm3, mmx_mask4

            psrl mm6, 4
            pand mm0, mmx_mask1

            pand mm4, mmx_mask4
            psrl mm5, 4

            psrl mm0, 1
            paddb mm7, mm6

            paddb mm7, mm0
            add edi, 16

            psrl mm3, 4

            psrl mm4, 4
            paddb mm5, mm3

            paddb mm7, mm4
            dec ecx

            paddb mm7, mm5
            paddb mm7, [adj2]

            movq [edi-8],mm7
            
            jnz mmx_light_blur_loop
            mov of, edi
            mov f, esi           
          };
          f2=f+w; // update these bitches
          f3=f-w;
        }
#endif
        x=(w-2)&3;
	      while (x--)
	      {
		      *of++=DIV_2(f[0]) + DIV_4(f[0]) + DIV_16(f[1]) + DIV_16(f[-1]) + DIV_16(f2[0]) + DIV_16(f3[0]) + adj_tl2;
          f++;
          f2++;
          f3++;
        }

        // right block
        *of++=DIV_2(f[0])+DIV_8(f[0])+DIV_8(f[-1])+DIV_8(f2[0])+DIV_8(f3[0])+adj_tl1; f++;
	    }
    }
    // bottom block
    if (at_bottom)
    {
      unsigned int *f2=f-w;
      int x;
      int adj_tl=0, adj_tl2=0;
      if (roundmode) { adj_tl = 0x03030303; adj_tl2 = 0x04040404; }
      // bottom left
      *of++=DIV_2(f[0])+DIV_4(f[0])+DIV_8(f[1])+DIV_8(f2[0]) + adj_tl; f++; f2++;
	    // bottom center
      x=(w-2)/4;
	    while (x--)
	    {
		    of[0]=DIV_2(f[0]) + DIV_8(f[0]) + DIV_8(f[1]) + DIV_8(f[-1]) + DIV_8(f2[0]) + adj_tl2;
		    of[1]=DIV_2(f[1]) + DIV_8(f[1]) + DIV_8(f[2]) + DIV_8(f[0]) + DIV_8(f2[1]) + adj_tl2;
		    of[2]=DIV_2(f[2]) + DIV_8(f[2]) + DIV_8(f[3]) + DIV_8(f[1]) + DIV_8(f2[2])+adj_tl2;
		    of[3]=DIV_2(f[3]) + DIV_8(f[3]) + DIV_8(f[4]) + DIV_8(f[2]) + DIV_8(f2[3])+adj_tl2;
        f+=4;
        f2+=4;
        of+=4;
	    }
      x=(w-2)&3;
	    while (x--)
	    {
		    *of++=DIV_2(f[0]) + DIV_8(f[0]) + DIV_8(f[1]) + DIV_8(f[-1]) + DIV_8(f2[0])+adj_tl2;
        f++;
        f2++;
      }
      // bottom right
      *of++=DIV_2(f[0])+DIV_4(f[0]) + DIV_8(f[-1])+DIV_8(f2[0])+adj_tl; f++; f2++;
    }
  }
  else if (enabled == 3) // more blur
  {
    // top line
    if (at_top) {
      unsigned int *f2=f+w;
      int x;
      int adj_tl=0, adj_tl2=0;
      if (roundmode) { adj_tl = 0x02020202; adj_tl2 = 0x01010101; }
      // top left
      *of++=DIV_2(f[1])+DIV_2(f2[0]) + adj_tl2; f++; f2++;
	    // top center
      x=(w-2)/4;
	    while (x--)
	    {
		    of[0]=DIV_4(f[1]) + DIV_4(f[-1]) + DIV_2(f2[0]) + adj_tl;
		    of[1]=DIV_4(f[2]) + DIV_4(f[0]) + DIV_2(f2[1]) +adj_tl;
		    of[2]=DIV_4(f[3]) + DIV_4(f[1]) + DIV_2(f2[2]) + adj_tl;
		    of[3]=DIV_4(f[4]) + DIV_4(f[2]) + DIV_2(f2[3]) + adj_tl;
        f+=4;
        f2+=4;
        of+=4;
	    }
      x=(w-2)&3;
	    while (x--)
	    {
		    *of++=DIV_4(f[1]) + DIV_4(f[-1]) + DIV_2(f2[0])+adj_tl;
        f++;
        f2++;
      }
      // top right
      *of++=DIV_2(f[-1])+DIV_2(f2[0])+adj_tl2; f++; f2++;
    }


	  // middle block
    {
      int y=outh-at_top-at_bottom;
      int adj_tl1=0,adj_tl2=0;
      unsigned __int64 adj2=0;
      if (roundmode) { adj_tl1=0x02020202; adj_tl2=0x03030303; adj2=0x0303030303030303i64; }

      while (y--)
      {
        int x;
        unsigned int *f2=f+w;
        unsigned int *f3=f-w;
      
        // left edge
        *of++=DIV_2(f[1])+DIV_4(f2[0])+DIV_4(f3[0]) + adj_tl1; f++; f2++; f3++;

        // middle of line
#ifdef NO_MMX
        x=(w-2)/4;
        if (roundmode)
        {
	        while (x--)
	        {
		        of[0]=DIV_4(f[1]) + DIV_4(f[-1]) + DIV_4(f2[0]) + DIV_4(f3[0]) + 0x03030303;
		        of[1]=DIV_4(f[2]) + DIV_4(f[0]) + DIV_4(f2[1]) + DIV_4(f3[1]) + 0x03030303;
		        of[2]=DIV_4(f[3]) + DIV_4(f[1]) + DIV_4(f2[2]) + DIV_4(f3[2]) + 0x03030303;
		        of[3]=DIV_4(f[4]) + DIV_4(f[2]) + DIV_4(f2[3]) + DIV_4(f3[3]) + 0x03030303;
            f+=4; f2+=4; f3+=4; of+=4;
          }
        }
        else
        {
	        while (x--)
	        {
		        of[0]=DIV_4(f[1]) + DIV_4(f[-1]) + DIV_4(f2[0]) + DIV_4(f3[0]);
		        of[1]=DIV_4(f[2]) + DIV_4(f[0]) + DIV_4(f2[1]) + DIV_4(f3[1]);
		        of[2]=DIV_4(f[3]) + DIV_4(f[1]) + DIV_4(f2[2]) + DIV_4(f3[2]);
		        of[3]=DIV_4(f[4]) + DIV_4(f[2]) + DIV_4(f2[3]) + DIV_4(f3[3]);
            f+=4; f2+=4; f3+=4; of+=4;
          }
        }
#else
        {
          __asm 
          {
            mov ecx, w
            mov edx, ecx
            mov ebx, edx
            neg ebx
            mov esi, f
            mov edi, of
            sub ecx, 2
            shr ecx, 2
            movq mm1, [esi-4]
            align 16
mmx_heavy_blur_loop:
            movq mm2, [esi+4]
            pxor mm0, mm0

            movq mm5, mm2
            pxor mm7, mm7

            movq mm3, [esi+edx*4]
            pand mm1, mmx_mask2

            movq mm4, [esi+ebx*4]
            pand mm2, mmx_mask2

            pand mm3, mmx_mask2
            pand mm4, mmx_mask2

            psrl mm1, 2

            movq mm6, [esi+12]
            psrl mm2, 2

            psrl mm3, 2

            paddb mm0, mm1
            psrl mm4, 2

            movq mm1, mm6

            paddb mm2, mm3
            paddb mm0, mm4

            movq mm3, [esi+edx*4+8]
            paddb mm0, mm2

            movq mm4, [esi+ebx*4+8]
            paddb mm0, [adj2]

            pand mm6, mmx_mask2

            movq [edi],mm0
            pand mm5, mmx_mask2

            pand mm3, mmx_mask2
            add esi, 16

            psrl mm6, 2
            pand mm4, mmx_mask2

            psrl mm5, 2
            paddb mm7, mm6

            psrl mm3, 2
            add edi, 16

            psrl mm4, 2
            paddb mm5, mm3

            paddb mm7, mm4

            paddb mm7, mm5
            paddb mm7, [adj2]

            movq [edi-8],mm7
                        
            dec ecx
            jnz mmx_heavy_blur_loop
            mov of, edi
            mov f, esi           
          };
          f2=f+w; // update these bitches
          f3=f-w;
        }
#endif
        x=(w-2)&3;
	      while (x--)
	      {
		      *of++=DIV_4(f[1]) + DIV_4(f[-1]) + DIV_4(f2[0]) + DIV_4(f3[0]) + adj_tl2;
          f++;
          f2++;
          f3++;
        }

        // right block
        *of++=DIV_2(f[-1])+DIV_4(f2[0])+DIV_4(f3[0]) + adj_tl1; f++;
	    }
    }

    // bottom block
    if (at_bottom)
    {
      unsigned int *f2=f-w;
      int x;
      int adj_tl=0, adj_tl2=0;
      if (roundmode) { adj_tl = 0x02020202; adj_tl2 = 0x01010101; }
      // bottom left
      *of++=DIV_2(f[1])+DIV_2(f2[0]) + adj_tl2; f++; f2++;
	    // bottom center
      x=(w-2)/4;
	    while (x--)
	    {
		    of[0]=DIV_4(f[1]) + DIV_4(f[-1]) + DIV_2(f2[0])+adj_tl;
		    of[1]=DIV_4(f[2]) + DIV_4(f[0]) + DIV_2(f2[1])+adj_tl;
		    of[2]=DIV_4(f[3]) + DIV_4(f[1]) + DIV_2(f2[2])+adj_tl;
		    of[3]=DIV_4(f[4]) + DIV_4(f[2]) + DIV_2(f2[3])+adj_tl;
        f+=4;
        f2+=4;
        of+=4;
	    }
      x=(w-2)&3;
	    while (x--)
	    {
		    *of++=DIV_4(f[1]) + DIV_4(f[-1]) + DIV_2(f2[0])+adj_tl;
        f++;
        f2++;
      }
      // bottom right
      *of++=DIV_2(f[-1])+DIV_2(f2[0])+adj_tl2; f++; f2++;
    }
  }
  else
  {
    // top line
    if (at_top) 
    {
      unsigned int *f2=f+w;
      int x;
      int adj_tl=0, adj_tl2=0;
      if (roundmode) { adj_tl = 0x02020202; adj_tl2 = 0x03030303; }
      // top left
      *of++=DIV_2(f[0])+DIV_4(f[1])+DIV_4(f2[0]) + adj_tl; f++; f2++;
	    // top center
      x=(w-2)/4;
	    while (x--)
	    {
		    of[0]=DIV_4(f[0]) + DIV_4(f[1]) + DIV_4(f[-1]) + DIV_4(f2[0]) + adj_tl2;
		    of[1]=DIV_4(f[1]) + DIV_4(f[2]) + DIV_4(f[0]) + DIV_4(f2[1]) + adj_tl2;
		    of[2]=DIV_4(f[2]) + DIV_4(f[3]) + DIV_4(f[1]) + DIV_4(f2[2]) + adj_tl2;
		    of[3]=DIV_4(f[3]) + DIV_4(f[4]) + DIV_4(f[2]) + DIV_4(f2[3]) + adj_tl2;
        f+=4;
        f2+=4;
        of+=4;
	    }
      x=(w-2)&3;
	    while (x--)
	    {
		    *of++=DIV_4(f[0]) + DIV_4(f[1]) + DIV_4(f[-1]) + DIV_4(f2[0]) + adj_tl2;
        f++;
        f2++;
      }
      // top right
      *of++=DIV_2(f[0])+DIV_4(f[-1])+DIV_4(f2[0]) + adj_tl; f++; f2++;
    }


	  // middle block
    {
      int y=outh-at_top-at_bottom;
      int adj_tl1=0,adj_tl2=0;
      unsigned __int64 adj2=0;
      if (roundmode) { adj_tl1=0x03030303; adj_tl2=0x04040404; adj2=0x0404040404040404i64; }
      while (y--)
      {
        int x;
        unsigned int *f2=f+w;
        unsigned int *f3=f-w;
      
        // left edge
        *of++=DIV_4(f[0])+DIV_4(f[1])+DIV_4(f2[0])+DIV_4(f3[0])+adj_tl1; f++; f2++; f3++;

        // middle of line
#ifdef NO_MMX
        x=(w-2)/4;
        if (roundmode)
        {
	        while (x--)
	        {
		        of[0]=DIV_2(f[0]) + DIV_8(f[1]) + DIV_8(f[-1]) + DIV_8(f2[0]) + DIV_8(f3[0]) + 0x04040404;
		        of[1]=DIV_2(f[1]) + DIV_8(f[2]) + DIV_8(f[0]) + DIV_8(f2[1]) + DIV_8(f3[1]) + 0x04040404;
		        of[2]=DIV_2(f[2]) + DIV_8(f[3]) + DIV_8(f[1]) + DIV_8(f2[2]) + DIV_8(f3[2]) + 0x04040404;
		        of[3]=DIV_2(f[3]) + DIV_8(f[4]) + DIV_8(f[2]) + DIV_8(f2[3]) + DIV_8(f3[3]) + 0x04040404;
            f+=4; f2+=4; f3+=4; of+=4;
          }
        }
        else
        {
	        while (x--)
	        {
		        of[0]=DIV_2(f[0]) + DIV_8(f[1]) + DIV_8(f[-1]) + DIV_8(f2[0]) + DIV_8(f3[0]);
		        of[1]=DIV_2(f[1]) + DIV_8(f[2]) + DIV_8(f[0]) + DIV_8(f2[1]) + DIV_8(f3[1]);
		        of[2]=DIV_2(f[2]) + DIV_8(f[3]) + DIV_8(f[1]) + DIV_8(f2[2]) + DIV_8(f3[2]);
		        of[3]=DIV_2(f[3]) + DIV_8(f[4]) + DIV_8(f[2]) + DIV_8(f2[3]) + DIV_8(f3[3]);
            f+=4; f2+=4; f3+=4; of+=4;
          }
        }
#else
        {
          __asm 
          {
            mov ecx, w
            mov edx, ecx
            mov ebx, edx
            neg ebx
            mov esi, f
            mov edi, of
            sub ecx, 2
            shr ecx, 2
            movq mm1, [esi-4]
            align 16
mmx_normal_blur_loop:
            movq mm0, [esi]

            movq mm2, [esi+4]
            pand mm0, mmx_mask1

            movq mm5, mm2

            movq mm7, [esi+8]
            pand mm1, mmx_mask3

            movq mm3, [esi+edx*4]
            pand mm2, mmx_mask3

            movq mm4, [esi+ebx*4]
            pand mm3, mmx_mask3

            psrl mm0, 1
            pand mm4, mmx_mask3

            psrl mm1, 3
            pand mm7, mmx_mask1

            movq mm6, [esi+12]
            psrl mm2, 3

            add esi, 16
            psrl mm3, 3

            paddb mm0, mm1
            psrl mm4, 3

            movq mm1, mm6

            paddb mm2, mm3
            paddb mm0, mm4

            movq mm3, [esi+edx*4-8]
            paddb mm0, mm2

            movq mm4, [esi+ebx*4-8]
            paddb mm0, [adj2]

            pand mm6, mmx_mask3

            movq [edi],mm0
            pand mm5, mmx_mask3

            psrl mm7, 1
            pand mm3, mmx_mask3

            psrl mm6, 3
            pand mm4, mmx_mask3

            psrl mm5, 3
            paddb mm7, mm6

            add edi, 16
            psrl mm3, 3

            psrl mm4, 3
            paddb mm5, mm3

            paddb mm7, mm4
            dec ecx

            paddb mm7, mm5
            paddb mm7, [adj2]

            movq [edi-8],mm7
            
            jnz mmx_normal_blur_loop
            mov of, edi
            mov f, esi           
          };
          f2=f+w; // update these bitches
          f3=f-w;
        }
#endif
        x=(w-2)&3;
	      while (x--)
	      {
		      *of++=DIV_2(f[0]) + DIV_8(f[1]) + DIV_8(f[-1]) + DIV_8(f2[0]) + DIV_8(f3[0]) + adj_tl2;
          f++;
          f2++;
          f3++;
        }

        // right block
        *of++=DIV_4(f[0])+DIV_4(f[-1])+DIV_4(f2[0])+DIV_4(f3[0]) + adj_tl1; f++;
	    }
    }

    // bottom block
    if (at_bottom)
    {
      unsigned int *f2=f-w;
      int adj_tl=0, adj_tl2=0;
      if (roundmode) { adj_tl = 0x02020202; adj_tl2 = 0x03030303; }
      int x;
      // bottom left
      *of++=DIV_2(f[0])+DIV_4(f[1])+DIV_4(f2[0]) + adj_tl; f++; f2++;
	    // bottom center
      x=(w-2)/4;
	    while (x--)
	    {
		    of[0]=DIV_4(f[0]) + DIV_4(f[1]) + DIV_4(f[-1]) + DIV_4(f2[0]) + adj_tl2;
		    of[1]=DIV_4(f[1]) + DIV_4(f[2]) + DIV_4(f[0]) + DIV_4(f2[1]) + adj_tl2;
		    of[2]=DIV_4(f[2]) + DIV_4(f[3]) + DIV_4(f[1]) + DIV_4(f2[2]) + adj_tl2;
		    of[3]=DIV_4(f[3]) + DIV_4(f[4]) + DIV_4(f[2]) + DIV_4(f2[3]) + adj_tl2;
        f+=4;
        f2+=4;
        of+=4;
	    }
      x=(w-2)&3;
	    while (x--)
	    {
		    *of++=DIV_4(f[0]) + DIV_4(f[1]) + DIV_4(f[-1]) + DIV_4(f2[0]) + adj_tl2;
        f++;
        f2++;
      }
      // bottom right
      *of++=DIV_2(f[0])+DIV_4(f[-1])+DIV_4(f2[0]) + adj_tl; f++; f2++;
    }
  }

#ifndef NO_MMX
  __asm emms;
#endif
  
	timingLeave(0);
}

int C_THISCLASS::smp_begin(int max_threads, char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h)
{
  if (!enabled) return 0;
  return max_threads;
}


int C_THISCLASS::smp_finish(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h) // return value is that of render() for fbstuff etc
{
  return !!enabled;
}

int C_THISCLASS::render(char visdata[2][2][576], int isBeat, int *framebuffer, int *fbout, int w, int h)
{
  smp_begin(1,visdata,isBeat,framebuffer,fbout,w,h);
  if (isBeat & 0x80000000) return 0;

  smp_render(0,1,visdata,isBeat,framebuffer,fbout,w,h);
  return smp_finish(visdata,isBeat,framebuffer,fbout,w,h);
}


C_RBASE *R_Blur(char *desc)
{
	if (desc) { strcpy(desc,MOD_NAME); return NULL; }
	return (C_RBASE *) new C_THISCLASS();
}


static C_THISCLASS *g_this;

static BOOL CALLBACK g_DlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam)
{
	switch (uMsg)
	{
		case WM_INITDIALOG:
      if (g_this->enabled==2) CheckDlgButton(hwndDlg,IDC_RADIO3,BST_CHECKED);
      else if (g_this->enabled==3) CheckDlgButton(hwndDlg,IDC_RADIO4,BST_CHECKED);
      else if (g_this->enabled) CheckDlgButton(hwndDlg,IDC_RADIO2,BST_CHECKED);
      else CheckDlgButton(hwndDlg,IDC_RADIO1,BST_CHECKED);
      if (g_this->roundmode==0) CheckDlgButton(hwndDlg,IDC_ROUNDDOWN,BST_CHECKED);
      else CheckDlgButton(hwndDlg,IDC_ROUNDUP,BST_CHECKED);
			return 1;
    case WM_COMMAND:
      if (LOWORD(wParam) == IDC_RADIO1)
        if (IsDlgButtonChecked(hwndDlg,IDC_RADIO1))
          g_this->enabled=0;
      if (LOWORD(wParam) == IDC_RADIO2)
        if (IsDlgButtonChecked(hwndDlg,IDC_RADIO2))
          g_this->enabled=1;
      if (LOWORD(wParam) == IDC_RADIO3)
        if (IsDlgButtonChecked(hwndDlg,IDC_RADIO3))
          g_this->enabled=2;
      if (LOWORD(wParam) == IDC_RADIO4)
        if (IsDlgButtonChecked(hwndDlg,IDC_RADIO4))
          g_this->enabled=3;
      if (LOWORD(wParam) == IDC_ROUNDUP)
        if (IsDlgButtonChecked(hwndDlg,IDC_ROUNDUP))
          g_this->roundmode=1;
      if (LOWORD(wParam) == IDC_ROUNDDOWN)
        if (IsDlgButtonChecked(hwndDlg,IDC_ROUNDDOWN))
          g_this->roundmode=0;
      return 0;
    return 0;
	}
	return 0;
}


HWND C_THISCLASS::conf(HINSTANCE hInstance, HWND hwndParent)
{
	g_this = this;
	return WASABI_API_CREATEDIALOG(IDD_CFG_BLUR,hwndParent,g_DlgProc);
}

#else 
C_RBASE *R_Blur(char *desc) { return NULL; }
#endif