Searched refs:log2_denom (Results 1 - 14 of 14) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddiracdsp.h26 typedef void (*dirac_weight_func)(uint8_t *block, int stride, int log2_denom, int weight, int h);
27 typedef void (*dirac_biweight_func)(uint8_t *dst, const uint8_t *src, int stride, int log2_denom, int weightd, int weights, int h);
H A Ddiracdsp.c86 #define op_scale1(x) block[x] = av_clip_uint8( (block[x]*weight + (1<<(log2_denom-1))) >> log2_denom)
87 #define op_scale2(x) dst[x] = av_clip_uint8( (src[x]*weights + dst[x]*weightd + (1<<(log2_denom-1))) >> log2_denom)
90 static void weight_dirac_pixels ## W ## _c(uint8_t *block, int stride, int log2_denom, \
101 static void biweight_dirac_pixels ## W ## _c(uint8_t *dst, const uint8_t *src, int stride, int log2_denom, \
H A Dh264dsp_template.c30 #define op_scale1(x) block[x] = av_clip_pixel( (block[x]*weight + offset) >> log2_denom )
31 #define op_scale2(x) dst[x] = av_clip_pixel( (src[x]*weights + dst[x]*weightd + offset) >> (log2_denom+1))
34 int log2_denom, int weight, int offset) \
39 offset <<= (log2_denom + (BIT_DEPTH-8)); \
40 if(log2_denom) offset += 1<<(log2_denom-1); \
64 int log2_denom, int weightd, int weights, int offset) \
71 offset = ((offset + 1) | 1) << log2_denom; \
H A Dh264dsp.h33 int log2_denom, int weight, int offset);
35 int stride, int height, int log2_denom,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/x86/
H A Dh264_weight_10bit.asm39 ; void h264_weight(uint8_t *dst, int stride, int height, int log2_denom,
55 pslld m0, m2 ; 1<<log2_denom
62 paddw m2, [sq_1] ; log2_denom+1
153 ; int log2_denom, int weightd, int weights, int offset);
179 movd m6, r4m ; log2_denom
180 pslld m5, m6 ; (((offset<<2)+1)|1)<<log2_denom
H A Dh264dsp_mmx.c303 int stride, int height, int log2_denom, int weight, int offset);
307 uint8_t *src, int stride, int height, int log2_denom, int weightd, \
326 int stride, int height, int log2_denom, int weight, int offset);
330 (uint8_t *dst, uint8_t *src, int stride, int height, int log2_denom, \
H A Dh264_weight.asm32 ; int height, int log2_denom, int weightd,
36 ; int log2_denom, int weight, int offset);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264dsp.h35 int log2_denom, int weight, int offset);
37 int log2_denom, int weightd, int weights, int offset);
H A Dh264dsp_template.c30 #define op_scale1(x) block[x] = av_clip_pixel( (block[x]*weight + offset) >> log2_denom )
31 #define op_scale2(x) dst[x] = av_clip_pixel( (src[x]*weights + dst[x]*weightd + offset) >> (log2_denom+1))
34 int log2_denom, int weight, int offset) \
39 offset <<= (log2_denom + (BIT_DEPTH-8)); \
40 if(log2_denom) offset += 1<<(log2_denom-1); \
64 int log2_denom, int weightd, int weights, int offset) \
71 offset = ((offset + 1) | 1) << log2_denom; \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dh264_weight_10bit.asm39 ; int log2_denom, int weight, int offset);
54 pslld m0, m2 ; 1<<log2_denom
61 paddw m2, [sq_1] ; log2_denom+1
155 ; int height, int log2_denom, int weightd,
182 movd m6, r4m ; log2_denom
183 pslld m5, m6 ; (((offset<<2)+1)|1)<<log2_denom
H A Dh264dsp_init.c159 int height, int log2_denom, \
165 int log2_denom, int weightd, \
186 int log2_denom, \
195 int log2_denom, \
H A Dh264_weight.asm32 ; int height, int log2_denom, int weightd,
36 ; int log2_denom, int weight, int offset);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/ppc/
H A Dh264dsp.c620 int log2_denom, int weight, int offset, int w)
629 offset <<= log2_denom; local
630 if(log2_denom) offset += 1<<(log2_denom-1);
631 temp[0] = log2_denom;
666 int log2_denom, int weightd, int weights, int offset, int w)
675 offset = ((offset + 1) | 1) << log2_denom;
676 temp[0] = log2_denom+1;
731 int log2_denom, int weight, int offset) \
733 weight_h264_W_altivec(block, stride, height, log2_denom, weigh
619 weight_h264_W_altivec(uint8_t *block, int stride, int height, int log2_denom, int weight, int offset, int w) argument
665 biweight_h264_W_altivec(uint8_t *dst, uint8_t *src, int stride, int height, int log2_denom, int weightd, int weights, int offset, int w) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/ppc/
H A Dh264_altivec.c847 int log2_denom, int weight, int offset, int w)
856 offset <<= log2_denom; local
857 if(log2_denom) offset += 1<<(log2_denom-1);
858 temp[0] = log2_denom;
893 int log2_denom, int weightd, int weights, int offset, int w)
902 offset = ((offset + 1) | 1) << log2_denom;
903 temp[0] = log2_denom+1;
958 int log2_denom, int weight, int offset){ \
959 weight_h264_W_altivec(block, stride, height, log2_denom, weigh
846 weight_h264_W_altivec(uint8_t *block, int stride, int height, int log2_denom, int weight, int offset, int w) argument
892 biweight_h264_W_altivec(uint8_t *dst, uint8_t *src, int stride, int height, int log2_denom, int weightd, int weights, int offset, int w) argument
[all...]

Completed in 110 milliseconds