|
|
|
@ -671,6 +671,19 @@ static av_always_inline void planar_rgb16_to_y(uint8_t *_dst, const uint8_t *_sr |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static av_always_inline void planar_rgb16_to_a(uint8_t *_dst, const uint8_t *_src[4], |
|
|
|
|
int width, int bpc, int is_be) |
|
|
|
|
{ |
|
|
|
|
int i; |
|
|
|
|
const uint16_t **src = (const uint16_t **)_src; |
|
|
|
|
uint16_t *dst = (uint16_t *)_dst; |
|
|
|
|
int shift = bpc < 15 ? bpc : 14; |
|
|
|
|
|
|
|
|
|
for (i = 0; i < width; i++) { |
|
|
|
|
dst[i] = rdpx(src[3] + i) << (14 - shift); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void planar_rgb9le_to_y(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
{ |
|
|
|
|
planar_rgb16_to_y(dst, src, w, 9, 0); |
|
|
|
@ -696,21 +709,41 @@ static void planar_rgb12le_to_y(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
planar_rgb16_to_y(dst, src, w, 12, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void planar_rgb12le_to_a(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
{ |
|
|
|
|
planar_rgb16_to_a(dst, src, w, 12, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void planar_rgb12be_to_y(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
{ |
|
|
|
|
planar_rgb16_to_y(dst, src, w, 12, 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void planar_rgb12be_to_a(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
{ |
|
|
|
|
planar_rgb16_to_a(dst, src, w, 12, 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void planar_rgb16le_to_y(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
{ |
|
|
|
|
planar_rgb16_to_y(dst, src, w, 16, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void planar_rgb16le_to_a(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
{ |
|
|
|
|
planar_rgb16_to_a(dst, src, w, 16, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void planar_rgb16be_to_y(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
{ |
|
|
|
|
planar_rgb16_to_y(dst, src, w, 16, 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void planar_rgb16be_to_a(uint8_t *dst, const uint8_t *src[4], int w) |
|
|
|
|
{ |
|
|
|
|
planar_rgb16_to_a(dst, src, w, 16, 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static av_always_inline void planar_rgb16_to_uv(uint8_t *_dstU, uint8_t *_dstV, |
|
|
|
|
const uint8_t *_src[4], int width, |
|
|
|
|
int bpc, int is_be) |
|
|
|
@ -1044,10 +1077,12 @@ av_cold void ff_sws_init_input_funcs(SwsContext *c) |
|
|
|
|
c->readLumPlanar = planar_rgb10le_to_y; |
|
|
|
|
break; |
|
|
|
|
case AV_PIX_FMT_GBRAP12LE: |
|
|
|
|
c->readAlpPlanar = planar_rgb12le_to_a; |
|
|
|
|
case AV_PIX_FMT_GBRP12LE: |
|
|
|
|
c->readLumPlanar = planar_rgb12le_to_y; |
|
|
|
|
break; |
|
|
|
|
case AV_PIX_FMT_GBRAP16LE: |
|
|
|
|
c->readAlpPlanar = planar_rgb16le_to_a; |
|
|
|
|
case AV_PIX_FMT_GBRP16LE: |
|
|
|
|
c->readLumPlanar = planar_rgb16le_to_y; |
|
|
|
|
break; |
|
|
|
@ -1058,10 +1093,12 @@ av_cold void ff_sws_init_input_funcs(SwsContext *c) |
|
|
|
|
c->readLumPlanar = planar_rgb10be_to_y; |
|
|
|
|
break; |
|
|
|
|
case AV_PIX_FMT_GBRAP12BE: |
|
|
|
|
c->readAlpPlanar = planar_rgb12be_to_a; |
|
|
|
|
case AV_PIX_FMT_GBRP12BE: |
|
|
|
|
c->readLumPlanar = planar_rgb12be_to_y; |
|
|
|
|
break; |
|
|
|
|
case AV_PIX_FMT_GBRAP16BE: |
|
|
|
|
c->readAlpPlanar = planar_rgb16be_to_a; |
|
|
|
|
case AV_PIX_FMT_GBRP16BE: |
|
|
|
|
c->readLumPlanar = planar_rgb16be_to_y; |
|
|
|
|
break; |
|
|
|
|