Commit e74f643b authored by takis's avatar takis

Move av_shr_i()'s unaltered comments to the header file.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8228 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7a150ac1
......@@ -99,10 +99,6 @@ int av_cmp_i(AVInteger a, AVInteger b){
return 0;
}
/**
* bitwise shift.
* @param s the number of bits by which the value should be shifted right, may be negative for shifting left
*/
AVInteger av_shr_i(AVInteger a, int s){
AVInteger out;
int i;
......
......@@ -40,6 +40,11 @@ AVInteger av_sub_i(AVInteger a, AVInteger b);
int av_log2_i(AVInteger a);
AVInteger av_mul_i(AVInteger a, AVInteger b);
int av_cmp_i(AVInteger a, AVInteger b);
/**
* bitwise shift.
* @param s the number of bits by which the value should be shifted right, may be negative for shifting left
*/
AVInteger av_shr_i(AVInteger a, int s);
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment