diff --git a/configure b/configure
index f1ba054a03962e4b77ef46e94878d0de206a8576..5bfd8e670a96af5d783a7f6d8ed36cafac7f97fb 100755
--- a/configure
+++ b/configure
@@ -1497,6 +1497,7 @@ HAVE_LIST="
     pod2man
     poll_h
     posix_memalign
+    pragma_deprecated
     pthread_cancel
     rdtsc
     rsync_contimeout
@@ -3777,6 +3778,11 @@ void foo(char * $restrict_keyword p);
 EOF
 done
 
+check_cc <<EOF && enable pragma_deprecated
+_Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
+_Pragma("GCC diagnostic warning \"-Wdeprecated-declarations\"")
+EOF
+
 check_cc <<EOF && enable attribute_packed
 struct { int x; } __attribute__((packed)) x;
 EOF
diff --git a/libavutil/internal.h b/libavutil/internal.h
index c5835fb4f86a2a832e506011db43aaadf0e498af..4b85efd867cf25cdaced54313b0f9a753850b3d0 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -62,6 +62,14 @@
 #    define av_export
 #endif
 
+#if HAVE_PRAGMA_DEPRECATED
+#    define FF_DISABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
+#    define FF_ENABLE_DEPRECATION_WARNINGS  _Pragma("GCC diagnostic warning \"-Wdeprecated-declarations\"")
+#else
+#    define FF_DISABLE_DEPRECATION_WARNINGS
+#    define FF_ENABLE_DEPRECATION_WARNINGS
+#endif
+
 #ifndef INT_BIT
 #    define INT_BIT (CHAR_BIT * sizeof(int))
 #endif