[FFmpeg-cvslog] lavc: schedule AVCodecContext.lowres for removal on next bump.
Anton Khirnov
git at videolan.org
Fri May 3 11:38:59 CEST 2013
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Apr 30 12:17:33 2013 +0200| [803d21f38bdafe7c4e2571a9ae7052013a12923b] | committer: Anton Khirnov
lavc: schedule AVCodecContext.lowres for removal on next bump.
It has been deprecated some time ago, but was forgotten during the last
bump.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=803d21f38bdafe7c4e2571a9ae7052013a12923b
---
libavcodec/avcodec.h | 4 ++++
libavcodec/version.h | 3 +++
2 files changed, 7 insertions(+)
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 2085eb6..c265d87 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2408,12 +2408,16 @@ typedef struct AVCodecContext {
*/
int bits_per_raw_sample;
+#if FF_API_LOWRES
/**
* low resolution decoding, 1-> 1/2 size, 2->1/4 size
* - encoding: unused
* - decoding: Set by user.
+ *
+ * @deprecated use decoder private options instead
*/
attribute_deprecated int lowres;
+#endif
/**
* the picture in the bitstream
diff --git a/libavcodec/version.h b/libavcodec/version.h
index 05ed6d0..2165a3d 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -61,5 +61,8 @@
#ifndef FF_API_MISSING_SAMPLE
#define FF_API_MISSING_SAMPLE (LIBAVCODEC_VERSION_MAJOR < 56)
#endif
+#ifndef FF_API_LOWRES
+#define FF_API_LOWRES (LIBAVCODEC_VERSION_MAJOR < 56)
+#endif
#endif /* AVCODEC_VERSION_H */
More information about the ffmpeg-cvslog
mailing list