Browse code

avcodec/snow_dwt: Remove ff_ prefix from ff_spatial_idwt_init() and ff_spatial_idwt_slice()

They are only used once in the file in which they are defined

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2015/05/18 21:07:48
Showing 1 changed files
... ...
@@ -684,7 +684,7 @@ void ff_spatial_idwt_buffered_slice(SnowDWTContext *dsp, DWTCompose *cs,
684 684
         }
685 685
 }
686 686
 
687
-static void ff_spatial_idwt_init(DWTCompose *cs, IDWTELEM *buffer, int width,
687
+static void spatial_idwt_init(DWTCompose *cs, IDWTELEM *buffer, int width,
688 688
                                  int height, int stride, int type,
689 689
                                  int decomposition_count)
690 690
 {
... ...
@@ -703,7 +703,7 @@ static void ff_spatial_idwt_init(DWTCompose *cs, IDWTELEM *buffer, int width,
703 703
     }
704 704
 }
705 705
 
706
-static void ff_spatial_idwt_slice(DWTCompose *cs, IDWTELEM *buffer,
706
+static void spatial_idwt_slice(DWTCompose *cs, IDWTELEM *buffer,
707 707
                                   IDWTELEM *temp, int width, int height,
708 708
                                   int stride, int type,
709 709
                                   int decomposition_count, int y)
... ...
@@ -733,10 +733,10 @@ void ff_spatial_idwt(IDWTELEM *buffer, IDWTELEM *temp, int width, int height,
733 733
 {
734 734
     DWTCompose cs[MAX_DECOMPOSITIONS];
735 735
     int y;
736
-    ff_spatial_idwt_init(cs, buffer, width, height, stride, type,
736
+    spatial_idwt_init(cs, buffer, width, height, stride, type,
737 737
                          decomposition_count);
738 738
     for (y = 0; y < height; y += 4)
739
-        ff_spatial_idwt_slice(cs, buffer, temp, width, height, stride, type,
739
+        spatial_idwt_slice(cs, buffer, temp, width, height, stride, type,
740 740
                               decomposition_count, y);
741 741
 }
742 742