avfilter/vf_super2xsai: constify src pointer

This commit is contained in:
Paul B Mahol 2021-01-21 13:05:57 +01:00
parent b51eae1abe
commit c2ee42e032
1 changed files with 2 additions and 2 deletions

View File

@ -54,14 +54,14 @@ typedef struct Super2xSaIContext {
+ ((((A & q_lo_pixel_mask) + (B & q_lo_pixel_mask) + (C & q_lo_pixel_mask) + (D & q_lo_pixel_mask)) >> 2) & q_lo_pixel_mask)
static void super2xsai(AVFilterContext *ctx,
uint8_t *src, int src_linesize,
const uint8_t *src, int src_linesize,
uint8_t *dst, int dst_linesize,
int width, int height)
{
Super2xSaIContext *s = ctx->priv;
unsigned int x, y;
uint32_t color[4][4];
unsigned char *src_line[4];
const uint8_t *src_line[4];
const int bpp = s->bpp;
const uint32_t hi_pixel_mask = s->hi_pixel_mask;
const uint32_t lo_pixel_mask = s->lo_pixel_mask;