vf_fspp.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
  3. * Copyright (C) 2005 Nikolaj Poroshin <porosh3@psu.ru>
  4. * Copyright (c) 2014 Arwa Arif <arwaarif1994@gmail.com>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  20. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  21. */
  22. #ifndef AVFILTER_FSPP_H
  23. #define AVFILTER_FSPP_H
  24. #include "avfilter.h"
  25. #define BLOCKSZ 12
  26. #define MAX_LEVEL 5
  27. #define DCTSIZE 8
  28. #define DCTSIZE_S "8"
  29. #define FIX(x,s) ((int) ((x) * (1 << s) + 0.5) & 0xffff)
  30. #define C64(x) ((uint64_t)((x) | (x) << 16)) <<32 | (uint64_t)(x) | (uint64_t)(x) << 16
  31. #define FIX64(x,s) C64(FIX(x,s))
  32. #define MULTIPLY16H(x,k) (((x) * (k)) >> 16)
  33. #define THRESHOLD(r,x,t) \
  34. if(((unsigned)((x) + t)) > t * 2) r = (x); \
  35. else r = 0;
  36. #define DESCALE(x,n) (((x) + (1 << ((n) - 1))) >> n)
  37. typedef int32_t int_simd16_t;
  38. static const int16_t FIX_0_382683433 = FIX(0.382683433, 14);
  39. static const int16_t FIX_0_541196100 = FIX(0.541196100, 14);
  40. static const int16_t FIX_0_707106781 = FIX(M_SQRT1_2 , 14);
  41. static const int16_t FIX_1_306562965 = FIX(1.306562965, 14);
  42. static const int16_t FIX_1_414213562_A = FIX(M_SQRT2 , 14);
  43. static const int16_t FIX_1_847759065 = FIX(1.847759065, 13);
  44. static const int16_t FIX_2_613125930 = FIX(-2.613125930, 13);
  45. static const int16_t FIX_1_414213562 = FIX(M_SQRT2 , 13);
  46. static const int16_t FIX_1_082392200 = FIX(1.082392200, 13);
  47. typedef struct FSPPContext {
  48. AVClass *class;
  49. uint64_t threshold_mtx_noq[8 * 2];
  50. uint64_t threshold_mtx[8 * 2]; //used in both C & MMX (& later SSE2) versions
  51. int log2_count;
  52. int strength;
  53. int hsub;
  54. int vsub;
  55. int temp_stride;
  56. int qp;
  57. int qscale_type;
  58. int prev_q;
  59. uint8_t *src;
  60. int16_t *temp;
  61. uint8_t *non_b_qp_table;
  62. int non_b_qp_alloc_size;
  63. int use_bframe_qp;
  64. void (*store_slice)(uint8_t *dst, int16_t *src,
  65. ptrdiff_t dst_stride, ptrdiff_t src_stride,
  66. ptrdiff_t width, ptrdiff_t height, ptrdiff_t log2_scale);
  67. void (*store_slice2)(uint8_t *dst, int16_t *src,
  68. ptrdiff_t dst_stride, ptrdiff_t src_stride,
  69. ptrdiff_t width, ptrdiff_t height, ptrdiff_t log2_scale);
  70. void (*mul_thrmat)(int16_t *thr_adr_noq, int16_t *thr_adr, int q);
  71. void (*column_fidct)(int16_t *thr_adr, int16_t *data,
  72. int16_t *output, int cnt);
  73. void (*row_idct)(int16_t *workspace, int16_t *output_adr,
  74. ptrdiff_t output_stride, int cnt);
  75. void (*row_fdct)(int16_t *data, const uint8_t *pixels,
  76. ptrdiff_t line_size, int cnt);
  77. } FSPPContext;
  78. void ff_fspp_init_x86(FSPPContext *fspp);
  79. #endif /* AVFILTER_FSPP_H */