You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-29 05:57:37 +02:00
swscale: remove unconditional #define DITHER1XBPP
This seems to have had an use in the past, but it is now defined unconditionally.
This commit is contained in:
@@ -1952,14 +1952,10 @@ static av_cold int sws_init_single_context(SwsContext *c, SwsFilter *srcFilter,
|
||||
av_log(c, AV_LOG_INFO, "%s scaler, from %s to %s%s ",
|
||||
scaler,
|
||||
av_get_pix_fmt_name(srcFormat),
|
||||
#ifdef DITHER1XBPP
|
||||
dstFormat == AV_PIX_FMT_BGR555 || dstFormat == AV_PIX_FMT_BGR565 ||
|
||||
dstFormat == AV_PIX_FMT_RGB444BE || dstFormat == AV_PIX_FMT_RGB444LE ||
|
||||
dstFormat == AV_PIX_FMT_BGR444BE || dstFormat == AV_PIX_FMT_BGR444LE ?
|
||||
"dithered " : "",
|
||||
#else
|
||||
"",
|
||||
#endif
|
||||
av_get_pix_fmt_name(dstFormat));
|
||||
|
||||
if (INLINE_MMXEXT(cpu_flags))
|
||||
|
||||
Reference in New Issue
Block a user