diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-18 14:07:48 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-18 14:07:48 +0200 |
commit | 4b0f78ad1f5e712e4dd9d809157a3e9252f9c042 (patch) | |
tree | e1ed2fc4968e08a15b4703a3e034f53f693c185b /libavcodec/snow_dwt.c | |
parent | c6bf27d59be65bdedbd0eb12f6847d1642bfbe8c (diff) | |
download | ffmpeg-4b0f78ad1f5e712e4dd9d809157a3e9252f9c042.tar.gz |
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>
Diffstat (limited to 'libavcodec/snow_dwt.c')
-rw-r--r-- | libavcodec/snow_dwt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/snow_dwt.c b/libavcodec/snow_dwt.c index c148cdab01..25681e7edd 100644 --- a/libavcodec/snow_dwt.c +++ b/libavcodec/snow_dwt.c @@ -684,7 +684,7 @@ void ff_spatial_idwt_buffered_slice(SnowDWTContext *dsp, DWTCompose *cs, } } -static void ff_spatial_idwt_init(DWTCompose *cs, IDWTELEM *buffer, int width, +static void spatial_idwt_init(DWTCompose *cs, IDWTELEM *buffer, int width, int height, int stride, int type, int decomposition_count) { @@ -703,7 +703,7 @@ static void ff_spatial_idwt_init(DWTCompose *cs, IDWTELEM *buffer, int width, } } -static void ff_spatial_idwt_slice(DWTCompose *cs, IDWTELEM *buffer, +static void spatial_idwt_slice(DWTCompose *cs, IDWTELEM *buffer, IDWTELEM *temp, int width, int height, int stride, int type, int decomposition_count, int y) @@ -733,10 +733,10 @@ void ff_spatial_idwt(IDWTELEM *buffer, IDWTELEM *temp, int width, int height, { DWTCompose cs[MAX_DECOMPOSITIONS]; int y; - ff_spatial_idwt_init(cs, buffer, width, height, stride, type, + spatial_idwt_init(cs, buffer, width, height, stride, type, decomposition_count); for (y = 0; y < height; y += 4) - ff_spatial_idwt_slice(cs, buffer, temp, width, height, stride, type, + spatial_idwt_slice(cs, buffer, temp, width, height, stride, type, decomposition_count, y); } |