diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-07-05 00:42:31 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-05 20:16:38 +0200 |
commit | d3f751e6030545c5e1f312c5a83c1e6ed5794f18 (patch) | |
tree | 95f3d36bfe11d600737632db631f63dfcff79f39 /libavformat/librtmp.c | |
parent | 8dd52d82029febc3effd981c3107846904559c6d (diff) | |
download | ffmpeg-d3f751e6030545c5e1f312c5a83c1e6ed5794f18.tar.gz |
Add some missing mathematics.h #includes for av_rescale().
Diffstat (limited to 'libavformat/librtmp.c')
-rw-r--r-- | libavformat/librtmp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/librtmp.c b/libavformat/librtmp.c index 30fe8a196b..6ccb66bd8c 100644 --- a/libavformat/librtmp.c +++ b/libavformat/librtmp.c @@ -24,6 +24,7 @@ * RTMP protocol based on http://rtmpdump.mplayerhq.hu/ librtmp */ +#include "libavutil/mathematics.h" #include "avformat.h" #include "url.h" |