mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 12:27:18 +00:00
swscale/utils: fix wrong deprecated message with rgb0
Fixes Ticket3242 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
691dec6201
commit
51fed95dde
@ -1120,13 +1120,14 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter,
|
||||
c->srcRange |= handle_jpeg(&c->srcFormat);
|
||||
c->dstRange |= handle_jpeg(&c->dstFormat);
|
||||
|
||||
if(srcFormat!=c->srcFormat || dstFormat!=c->dstFormat)
|
||||
av_log(c, AV_LOG_WARNING, "deprecated pixel format used, make sure you did set range correctly\n");
|
||||
|
||||
if (!c->contrast && !c->saturation && !c->dstFormatBpp)
|
||||
sws_setColorspaceDetails(c, ff_yuv2rgb_coeffs[SWS_CS_DEFAULT], c->srcRange,
|
||||
ff_yuv2rgb_coeffs[SWS_CS_DEFAULT],
|
||||
c->dstRange, 0, 1 << 16, 1 << 16);
|
||||
|
||||
if(srcFormat!=c->srcFormat || dstFormat!=c->dstFormat)
|
||||
av_log(c, AV_LOG_WARNING, "deprecated pixel format used, make sure you did set range correctly\n");
|
||||
handle_formats(c);
|
||||
srcFormat = c->srcFormat;
|
||||
dstFormat = c->dstFormat;
|
||||
|
Loading…
Reference in New Issue
Block a user