LUT_BITS           39 libavcodec/bgmc.c #define LUT_SIZE   (1 << LUT_BITS)         // size of the lookup tables
LUT_BITS          432 libavcodec/bgmc.c             unsigned int target = (i + 1) << (FREQ_BITS - LUT_BITS);
LUT_BITS          529 libavcodec/bgmc.c         unsigned int symbol = lut[target >> (FREQ_BITS - LUT_BITS)] << delta;
LUT_BITS           53 libavfilter/vf_hqdn3d.c     int d = (prev - cur) >> (8 - LUT_BITS);
LUT_BITS           66 libavfilter/vf_hqdn3d.c     temporal += 256 << LUT_BITS;
LUT_BITS           90 libavfilter/vf_hqdn3d.c     spatial  += 256 << LUT_BITS;
LUT_BITS           91 libavfilter/vf_hqdn3d.c     temporal += 256 << LUT_BITS;
LUT_BITS          182 libavfilter/vf_hqdn3d.c     for (i = -256<<LUT_BITS; i < 256<<LUT_BITS; i++) {
LUT_BITS          183 libavfilter/vf_hqdn3d.c         double f = ((i<<(9-LUT_BITS)) + (1<<(8-LUT_BITS)) - 1) / 512.0; // midpoint of the bin
LUT_BITS          186 libavfilter/vf_hqdn3d.c         ct[(256<<LUT_BITS)+i] = lrint(C);
LUT_BITS          281 libavfilter/vf_hqdn3d.c         s->coefs[i] = av_malloc((512<<LUT_BITS) * sizeof(int16_t));