From: Panagiotis Issaris Date: Sun, 4 Mar 2007 23:26:53 +0000 (+0000) Subject: Move av_log2_i()'s unaltered comments to the header file. X-Git-Tag: v0.5~9816 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=395722ba677df7073e1d98f46637990497e7c8db;p=platform%2Fupstream%2Flibav.git Move av_log2_i()'s unaltered comments to the header file. Originally committed as revision 8232 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavutil/integer.c b/libavutil/integer.c index bed5069..3269a36 100644 --- a/libavutil/integer.c +++ b/libavutil/integer.c @@ -49,10 +49,6 @@ AVInteger av_sub_i(AVInteger a, AVInteger b){ return a; } -/** - * returns the rounded down value of the logarithm of base 2 of the given AVInteger. - * this is simply the index of the most significant bit which is 1. Or 0 of all bits are 0 - */ int av_log2_i(AVInteger a){ int i; diff --git a/libavutil/integer.h b/libavutil/integer.h index 6680e79..2a4d703 100644 --- a/libavutil/integer.h +++ b/libavutil/integer.h @@ -37,6 +37,11 @@ typedef struct AVInteger{ AVInteger av_add_i(AVInteger a, AVInteger b); AVInteger av_sub_i(AVInteger a, AVInteger b); + +/** + * returns the rounded down value of the logarithm of base 2 of the given AVInteger. + * this is simply the index of the most significant bit which is 1. Or 0 of all bits are 0 + */ int av_log2_i(AVInteger a); AVInteger av_mul_i(AVInteger a, AVInteger b);