summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/APIchanges3
-rw-r--r--libavutil/avutil.h6
-rw-r--r--libavutil/utils.c5
-rw-r--r--libavutil/version.h2
4 files changed, 15 insertions, 1 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index 05f81b5d23..e163b56f3b 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -13,6 +13,9 @@ libavutil: 2013-12-xx
API changes, most recent first:
+2014-04-xx - xxxxxxx - lavu 53.13.0 - avutil.h
+ Add av_get_time_base_q().
+
2014-04-xx - xxxxxxx - lavu 53.12.0 - crc.h
Add AV_CRC_16_ANSI_LE crc variant.
diff --git a/libavutil/avutil.h b/libavutil/avutil.h
index a0d35d1627..8c6e571f62 100644
--- a/libavutil/avutil.h
+++ b/libavutil/avutil.h
@@ -240,6 +240,11 @@ enum AVMediaType {
#define AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE}
/**
+ * Return the fractional representation of the internal time base.
+ */
+AVRational av_get_time_base_q(void);
+
+/**
* @}
* @}
* @defgroup lavu_picture Image related
@@ -273,6 +278,7 @@ char av_get_picture_type_char(enum AVPictureType pict_type);
*/
#include "error.h"
+#include "rational.h"
#include "version.h"
#include "macros.h"
diff --git a/libavutil/utils.c b/libavutil/utils.c
index 9b18c97908..c8c161dccb 100644
--- a/libavutil/utils.c
+++ b/libavutil/utils.c
@@ -53,3 +53,8 @@ char av_get_picture_type_char(enum AVPictureType pict_type)
default: return '?';
}
}
+
+AVRational av_get_time_base_q(void)
+{
+ return (AVRational){1, AV_TIME_BASE};
+}
diff --git a/libavutil/version.h b/libavutil/version.h
index f32e8d06e3..9d3e7f31fc 100644
--- a/libavutil/version.h
+++ b/libavutil/version.h
@@ -54,7 +54,7 @@
*/
#define LIBAVUTIL_VERSION_MAJOR 53
-#define LIBAVUTIL_VERSION_MINOR 12
+#define LIBAVUTIL_VERSION_MINOR 13
#define LIBAVUTIL_VERSION_MICRO 0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \