mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
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>
This commit is contained in:
parent
c6bf27d59b
commit
4b0f78ad1f
@ -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 height, int stride, int type,
|
||||||
int decomposition_count)
|
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,
|
IDWTELEM *temp, int width, int height,
|
||||||
int stride, int type,
|
int stride, int type,
|
||||||
int decomposition_count, int y)
|
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];
|
DWTCompose cs[MAX_DECOMPOSITIONS];
|
||||||
int y;
|
int y;
|
||||||
ff_spatial_idwt_init(cs, buffer, width, height, stride, type,
|
spatial_idwt_init(cs, buffer, width, height, stride, type,
|
||||||
decomposition_count);
|
decomposition_count);
|
||||||
for (y = 0; y < height; y += 4)
|
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);
|
decomposition_count, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user