Re: [FFmpeg-devel] [PATCH] tests/checkasm/svq1enc: Use proper range for input

2024-05-13 Thread Tomas Härdin
mån 2024-05-06 klockan 17:41 +0200 skrev Andreas Rheinhardt: > ssd_int8_vs_int16 is only called from encode_block() > in svq1enc.c; it calls it in stages: At stage 0, > the int16_t array contains the difference of two > uint16_t. At each of the following stages, the > int16_t array is filled by sub

Re: [FFmpeg-devel] [PATCH] tests/checkasm/svq1enc: Use proper range for input

2024-05-08 Thread Andreas Rheinhardt
Andreas Rheinhardt: > ssd_int8_vs_int16 is only called from encode_block() > in svq1enc.c; it calls it in stages: At stage 0, > the int16_t array contains the difference of two > uint16_t. At each of the following stages, the > int16_t array is filled by subtracting an int8_t from > the current sta

[FFmpeg-devel] [PATCH] tests/checkasm/svq1enc: Use proper range for input

2024-05-06 Thread Andreas Rheinhardt
ssd_int8_vs_int16 is only called from encode_block() in svq1enc.c; it calls it in stages: At stage 0, the int16_t array contains the difference of two uint16_t. At each of the following stages, the int16_t array is filled by subtracting an int8_t from the current stage's int16_t array. The maximum