[FFmpeg-devel] [PATCH 1/2] avresample: remove deprecated attribute from the AVAudioResampleContext struct

James Almer jamrial at gmail.com
Thu Jan 4 20:41:15 EET 2018


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 <jamrial at gmail.com>
---
 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
-- 
2.15.0



More information about the ffmpeg-devel mailing list