diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-22 22:44:14 +0200 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2014-04-22 17:35:51 -0400 |
commit | b0bdc2a7123abd0287de435726ab68e9e475a8d8 (patch) | |
tree | df5746a1b522faae3a016f9fafe2acb5943af058 /libavutil/avutil.h | |
parent | 502512ea0f179165782777265f441d4061ff6012 (diff) | |
download | ffmpeg-b0bdc2a7123abd0287de435726ab68e9e475a8d8.tar.gz |
avutil: move av_get_time_base_q() after include rational.h
Fix compilation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Diffstat (limited to 'libavutil/avutil.h')
-rw-r--r-- | libavutil/avutil.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h index 8c6e571f62..f056415f09 100644 --- a/libavutil/avutil.h +++ b/libavutil/avutil.h @@ -240,11 +240,6 @@ 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 @@ -283,6 +278,11 @@ char av_get_picture_type_char(enum AVPictureType pict_type); #include "macros.h" /** + * Return the fractional representation of the internal time base. + */ +AVRational av_get_time_base_q(void); + +/** * @} * @} */ |