integer.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <stdint.h>
  21. #include "libavutil/avassert.h"
  22. #include "libavutil/integer.h"
  23. #include "libavutil/intmath.h"
  24. int main(void){
  25. int64_t a,b;
  26. for(a=7; a<256*256*256; a+=13215){
  27. for(b=3; b<256*256*256; b+=27118){
  28. AVInteger ai= av_int2i(a);
  29. AVInteger bi= av_int2i(b);
  30. av_assert0(av_i2int(ai) == a);
  31. av_assert0(av_i2int(bi) == b);
  32. av_assert0(av_i2int(av_add_i(ai,bi)) == a+b);
  33. av_assert0(av_i2int(av_sub_i(ai,bi)) == a-b);
  34. av_assert0(av_i2int(av_mul_i(ai,bi)) == a*b);
  35. av_assert0(av_i2int(av_shr_i(ai, 9)) == a>>9);
  36. av_assert0(av_i2int(av_shr_i(ai,-9)) == a<<9);
  37. av_assert0(av_i2int(av_shr_i(ai, 17)) == a>>17);
  38. av_assert0(av_i2int(av_shr_i(ai,-17)) == a<<17);
  39. av_assert0(av_log2_i(ai) == av_log2(a));
  40. av_assert0(av_i2int(av_div_i(ai,bi)) == a/b);
  41. }
  42. }
  43. return 0;
  44. }