[FFmpeg-cvslog] avopt: Reorder the default_val struct, making i64 the first field

Martin Storsjö git at videolan.org
Wed Sep 5 15:06:32 CEST 2012


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Fri Aug 31 13:35:47 2012 +0300| [686a329395bf4b602445dd5015fab507b01ad4f2] | committer: Martin Storsjö

avopt: Reorder the default_val struct, making i64 the first field

Also mention this change in APIchanges.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=686a329395bf4b602445dd5015fab507b01ad4f2
---

 doc/APIchanges      |    4 ++++
 libavutil/opt.h     |    2 +-
 libavutil/version.h |    2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/doc/APIchanges b/doc/APIchanges
index dda0996..7e1ffd0 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -13,6 +13,10 @@ libavutil:     2011-04-18
 
 API changes, most recent first:
 
+2012-09-04 - xxxxxxx - lavu 51.40.0 - opt.h
+  Reordered the fields in default_val in AVOption, changed which
+  default_val field is used for which AVOptionType.
+
 2012-xx-xx - xxxxxxx - lavc 54.26.1 - avcodec.h
   Add codec descriptor properties AV_CODEC_PROP_LOSSY and
   AV_CODEC_PROP_LOSSLESS.
diff --git a/libavutil/opt.h b/libavutil/opt.h
index 8f800fc..775267f 100644
--- a/libavutil/opt.h
+++ b/libavutil/opt.h
@@ -261,10 +261,10 @@ typedef struct AVOption {
      * the default value for scalar options
      */
     union {
+        int64_t i64;
         double dbl;
         const char *str;
         /* TODO those are unused now */
-        int64_t i64;
         AVRational q;
     } default_val;
     double min;                 ///< minimum valid value for the option
diff --git a/libavutil/version.h b/libavutil/version.h
index 2dc821d..293a65b 100644
--- a/libavutil/version.h
+++ b/libavutil/version.h
@@ -37,7 +37,7 @@
  */
 
 #define LIBAVUTIL_VERSION_MAJOR 51
-#define LIBAVUTIL_VERSION_MINOR 39
+#define LIBAVUTIL_VERSION_MINOR 40
 #define LIBAVUTIL_VERSION_MICRO  0
 
 #define LIBAVUTIL_VERSION_INT   AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \



More information about the ffmpeg-cvslog mailing list