summaryrefslogtreecommitdiff
path: root/contrib/ffmpeg/libavutil/rational.h
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-03-01 03:05:13 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-03-01 03:05:13 +0100
commit1d0b3b20c34517b9d1ddf3ea347776304b0c4b44 (patch)
tree89f4fc640c2becc6f00ae08996754952ecf149c1 /contrib/ffmpeg/libavutil/rational.h
parent09496ad3469a0ade8dbd9a351e639b78f20b7942 (diff)
downloadxine-lib-1d0b3b20c34517b9d1ddf3ea347776304b0c4b44.tar.gz
xine-lib-1d0b3b20c34517b9d1ddf3ea347776304b0c4b44.tar.bz2
Update internal FFmpeg copy.
Diffstat (limited to 'contrib/ffmpeg/libavutil/rational.h')
-rw-r--r--contrib/ffmpeg/libavutil/rational.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/contrib/ffmpeg/libavutil/rational.h b/contrib/ffmpeg/libavutil/rational.h
index 63c0b150f..f53f27861 100644
--- a/contrib/ffmpeg/libavutil/rational.h
+++ b/contrib/ffmpeg/libavutil/rational.h
@@ -17,7 +17,6 @@
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
*/
/**
@@ -26,8 +25,10 @@
* @author Michael Niedermayer <michaelni@gmx.at>
*/
-#ifndef RATIONAL_H
-#define RATIONAL_H
+#ifndef FFMPEG_RATIONAL_H
+#define FFMPEG_RATIONAL_H
+
+#include <stdint.h>
/**
* Rational number num/den.
@@ -99,7 +100,7 @@ AVRational av_add_q(AVRational b, AVRational c);
* Subtracts one rational from another.
* @param b first rational.
* @param c second rational.
- * returns b-c.
+ * @return b-c.
*/
AVRational av_sub_q(AVRational b, AVRational c);
@@ -111,4 +112,4 @@ AVRational av_sub_q(AVRational b, AVRational c);
*/
AVRational av_d2q(double d, int max);
-#endif // RATIONAL_H
+#endif /* FFMPEG_RATIONAL_H */