You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-25 14:23:15 +02:00
Avoid incorrect deprecated pixel format warning.
Should only be printed if a "JPEG" format was used, not for e.g. XYZ. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
@ -1064,13 +1064,14 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter,
|
|||||||
|
|
||||||
handle_jpeg(&srcFormat);
|
handle_jpeg(&srcFormat);
|
||||||
handle_jpeg(&dstFormat);
|
handle_jpeg(&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");
|
||||||
handle_0alpha(&srcFormat);
|
handle_0alpha(&srcFormat);
|
||||||
handle_0alpha(&dstFormat);
|
handle_0alpha(&dstFormat);
|
||||||
handle_xyz(&srcFormat);
|
handle_xyz(&srcFormat);
|
||||||
handle_xyz(&dstFormat);
|
handle_xyz(&dstFormat);
|
||||||
|
|
||||||
if(srcFormat!=c->srcFormat || dstFormat!=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");
|
|
||||||
c->srcFormat= srcFormat;
|
c->srcFormat= srcFormat;
|
||||||
c->dstFormat= dstFormat;
|
c->dstFormat= dstFormat;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user