Module: libav
Branch: master
Commit: 6dca24cd1d570b806b5a3fdaef9d3c8608942a81

Author:    Vittorio Giovara <[email protected]>
Committer: Vittorio Giovara <[email protected]>
Date:      Mon Dec  5 15:11:06 2016 -0500

lavc: Drop deprecated way of setting codec dimensions

Deprecated in 10/2013.

---

 libavcodec/avcodec.h | 8 --------
 libavcodec/utils.c   | 7 -------
 libavcodec/version.h | 3 ---
 3 files changed, 18 deletions(-)

diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 3a007fa..11a3280 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -4937,14 +4937,6 @@ enum AVPixelFormat avcodec_default_get_format(struct 
AVCodecContext *s, const en
  * @}
  */
 
-#if FF_API_SET_DIMENSIONS
-/**
- * @deprecated this function is not supposed to be used from outside of lavc
- */
-attribute_deprecated
-void avcodec_set_dimensions(AVCodecContext *s, int width, int height);
-#endif
-
 /**
  * Put a string representing the codec tag codec_tag in buf.
  *
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 8a481dd..6cef650 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -125,13 +125,6 @@ unsigned avcodec_get_edge_width(void)
 }
 #endif
 
-#if FF_API_SET_DIMENSIONS
-void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
-{
-    ff_set_dimensions(s, width, height);
-}
-#endif
-
 int ff_set_dimensions(AVCodecContext *s, int width, int height)
 {
     int ret = av_image_check_size(width, height, 0, s);
diff --git a/libavcodec/version.h b/libavcodec/version.h
index 1f06483..a12c322 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -47,9 +47,6 @@
  * the public API and may change, break or disappear at any time.
  */
 
-#ifndef FF_API_SET_DIMENSIONS
-#define FF_API_SET_DIMENSIONS    (LIBAVCODEC_VERSION_MAJOR < 58)
-#endif
 #ifndef FF_API_DEBUG_MV
 #define FF_API_DEBUG_MV          (LIBAVCODEC_VERSION_MAJOR < 58)
 #endif

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to