mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
Merge remote-tracking branch 'cehoyos/master'
* cehoyos/master: Check more completely for invalid pix_fmts in planarRgb16ToRgb16Wrapper() Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
0f88a98b43
@ -495,7 +495,8 @@ static int planarRgb16ToRgb16Wrapper(SwsContext *c, const uint8_t *src[],
|
||||
swap += 2;
|
||||
|
||||
if ((src_format->flags & (AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB)) !=
|
||||
(AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB)) {
|
||||
(AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB) ||
|
||||
bits_per_sample <= 8) {
|
||||
av_log(c, AV_LOG_ERROR, "unsupported planar RGB conversion %s -> %s\n",
|
||||
src_format->name, dst_format->name);
|
||||
return srcSliceH;
|
||||
|
Loading…
x
Reference in New Issue
Block a user