[FFmpeg-cvslog] lavc: deprecate CODEC_CAP_NEG_LINESIZES
Anton Khirnov
git at videolan.org
Sat Nov 16 23:42:46 CET 2013
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Mon Nov 4 12:07:24 2013 +0100| [b068660ffa73f226cc03a67e214b8540fc1e11c4] | committer: Anton Khirnov
lavc: deprecate CODEC_CAP_NEG_LINESIZES
It was never used in any codec since it was added 3 years ago.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b068660ffa73f226cc03a67e214b8540fc1e11c4
---
libavcodec/avcodec.h | 4 +++-
libavcodec/version.h | 3 +++
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 79c6efc..f2fd0dc 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -762,10 +762,12 @@ typedef struct RcOverride{
* Codec should fill in channel configuration and samplerate instead of container
*/
#define CODEC_CAP_CHANNEL_CONF 0x0400
+#if FF_API_NEG_LINESIZES
/**
- * Codec is able to deal with negative linesizes
+ * @deprecated no codecs use this capability
*/
#define CODEC_CAP_NEG_LINESIZES 0x0800
+#endif
/**
* Codec supports frame-level multithreading.
*/
diff --git a/libavcodec/version.h b/libavcodec/version.h
index e9d09ac..c828dc8 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -115,5 +115,8 @@
#ifndef FF_API_FAST_MALLOC
#define FF_API_FAST_MALLOC (LIBAVCODEC_VERSION_MAJOR < 56)
#endif
+#ifndef FF_API_NEG_LINESIZES
+#define FF_API_NEG_LINESIZES (LIBAVCODEC_VERSION_MAJOR < 56)
+#endif
#endif /* AVCODEC_VERSION_H */
More information about the ffmpeg-cvslog
mailing list