Browse Source

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

Originally committed as revision 8228 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris 19 years ago
parent
commit
886368e989
2 changed files with 5 additions and 4 deletions
  1. +0
    -4
      libavutil/integer.c
  2. +5
    -0
      libavutil/integer.h

+ 0
- 4
libavutil/integer.c View File

@@ -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;


+ 5
- 0
libavutil/integer.h View File

@@ -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);

/**


Loading…
Cancel
Save