mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
vf_unsharp: Mark readonly variable as const.
This fixes the following warning: libavfilter/vf_unsharp.c:106: warning: initialization discards qualifiers from pointer target type
This commit is contained in:
parent
14af74e9a0
commit
1f068e4450
@ -103,8 +103,8 @@ static void apply_unsharp( uint8_t *dst, int dst_stride,
|
||||
tmp1 = sc[z + 1][x + fp->steps_x] + tmp2; sc[z + 1][x + fp->steps_x] = tmp2;
|
||||
}
|
||||
if (x >= fp->steps_x && y >= fp->steps_y) {
|
||||
uint8_t* srx = src - fp->steps_y * src_stride + x - fp->steps_x;
|
||||
uint8_t* dsx = dst - fp->steps_y * dst_stride + x - fp->steps_x;
|
||||
const uint8_t *srx = src - fp->steps_y * src_stride + x - fp->steps_x;
|
||||
uint8_t *dsx = dst - fp->steps_y * dst_stride + x - fp->steps_x;
|
||||
|
||||
res = (int32_t)*srx + ((((int32_t) * srx - (int32_t)((tmp1 + fp->halfscale) >> fp->scalebits)) * fp->amount) >> 16);
|
||||
*dsx = av_clip_uint8(res);
|
||||
|
Loading…
Reference in New Issue
Block a user