From ded409b7c9c242df5954f582f7d8b180f9291793 Mon Sep 17 00:00:00 2001 From: James Almer Date: Thu, 4 Jan 2018 15:35:59 -0300 Subject: [PATCH] avresample: remove deprecated attribute from the AVAudioResampleContext struct Having all the public functions marked as deprecated is enough. This gets rid of a warning spam when compiling any file including libavresample/avresample.h even when avresample is not enabled, like it's the case with fftools/cmdutils.c Signed-off-by: James Almer --- libavresample/avresample.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavresample/avresample.h b/libavresample/avresample.h index 440e1a16e7..5ac9adb44b 100644 --- a/libavresample/avresample.h +++ b/libavresample/avresample.h @@ -103,7 +103,7 @@ #define AVRESAMPLE_MAX_CHANNELS 32 -typedef attribute_deprecated struct AVAudioResampleContext AVAudioResampleContext; +typedef struct AVAudioResampleContext AVAudioResampleContext; /** * @deprecated use libswresample -- GitLab