Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoft Works <softworkz@hotmail.com>2021-10-16 23:50:13 +0300
committerMarton Balint <cus@passwd.hu>2021-11-13 21:55:32 +0300
commit58dce6f010dd1c083308a7f582990e90432e2967 (patch)
treea50f03a2c4e63879fb1937a736c2ec1606ba3eb4 /libswscale
parentf3b6e3e81aad9adb454cee2983d55455e2fc3ec2 (diff)
swscale/swscale: check SWS_PRINT_INFO flag for printing alignment warnings
This makes output consistent with a similar warning just few lines above where this flag is checked in the same way. Signed-off-by: softworkz <softworkz@hotmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/swscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 75cde31f4f..feef3482d2 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -329,7 +329,7 @@ static int swscale(SwsContext *c, const uint8_t *src[],
) {
SwsContext *const ctx = c->parent ? c->parent : c;
int cpu_flags = av_get_cpu_flags();
- if (HAVE_MMXEXT && (cpu_flags & AV_CPU_FLAG_SSE2) &&
+ if (flags & SWS_PRINT_INFO && HAVE_MMXEXT && (cpu_flags & AV_CPU_FLAG_SSE2) &&
!atomic_exchange_explicit(&ctx->stride_unaligned_warned,1, memory_order_relaxed)) {
av_log(c, AV_LOG_WARNING, "Warning: data is not aligned! This can lead to a speed loss\n");
}