You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
avfilter/vf_spp: change temporary to unsigned
More consistent with uspp and allows for future 10bit support Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -174,7 +174,7 @@ static void softthresh_mmx(int16_t dst[64], const int16_t src[64],
|
||||
dst[0] = (src[0] + 4) >> 3;
|
||||
}
|
||||
|
||||
static void store_slice_mmx(uint8_t *dst, const int16_t *src,
|
||||
static void store_slice_mmx(uint8_t *dst, const uint16_t *src,
|
||||
int dst_stride, int src_stride,
|
||||
int width, int height, int log2_scale,
|
||||
const uint8_t dither[8][8])
|
||||
|
||||
Reference in New Issue
Block a user