Searched refs:ref_buf (Results 1 - 16 of 16) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dgsmdec_data.h33 int16_t ref_buf[280]; member in struct:GSMContext
H A Divi_dsp.h262 * @param[in] ref_buf pointer to the corresponding block in the reference frame
266 void ff_ivi_mc_8x8_delta(int16_t *buf, const int16_t *ref_buf, uint32_t pitch, int mc_type);
272 * @param[in] ref_buf pointer to the corresponding block in the reference frame
276 void ff_ivi_mc_4x4_delta(int16_t *buf, const int16_t *ref_buf, uint32_t pitch, int mc_type);
282 * @param[in] ref_buf pointer to the corresponding block in the reference frame
286 void ff_ivi_mc_8x8_no_delta(int16_t *buf, const int16_t *ref_buf, uint32_t pitch, int mc_type);
292 * @param[in] ref_buf pointer to the corresponding block in the reference frame
296 void ff_ivi_mc_4x4_no_delta(int16_t *buf, const int16_t *ref_buf, uint32_t pitch, int mc_type);
302 * @param[in] ref_buf pointer to the corresponding block in the backward reference frame
308 void ff_ivi_mc_avg_8x8_delta(int16_t *buf, const int16_t *ref_buf, cons
[all...]
H A Dgsmdec_template.c134 int16_t *ref_dst = ctx->ref_buf + 120;
154 memcpy(ctx->ref_buf, ctx->ref_buf + 160, 120 * sizeof(*ctx->ref_buf));
155 short_term_synth(ctx, samples, ctx->ref_buf + 120);
H A Divi_dsp.c777 const int16_t *ref_buf, \
785 for (i = 0; i < size; i++, buf += dpitch, ref_buf += pitch) { \
787 OP(buf[j], ref_buf[j]); \
792 for (i = 0; i < size; i++, buf += dpitch, ref_buf += pitch) \
794 OP(buf[j], (ref_buf[j] + ref_buf[j+1]) >> 1); \
797 wptr = ref_buf + pitch; \
798 for (i = 0; i < size; i++, buf += dpitch, wptr += pitch, ref_buf += pitch) \
800 OP(buf[j], (ref_buf[j] + wptr[j]) >> 1); \
803 wptr = ref_buf
[all...]
H A Divi_common.h154 int16_t *ref_buf; ///< pointer to the reference frame buffer (for motion compensation) member in struct:IVIBandDesc
236 int ref_buf; ///< inter frame reference buffer index member in struct:IVI45DecContext
H A Divi_common.c74 typedef void (*ivi_mc_func) (int16_t *buf, const int16_t *ref_buf,
90 av_assert0(offs >= 0 && ref_offs >= 0 && band->ref_buf);
96 mc(band->buf + offs, band->ref_buf + ref_offs, band->pitch, mc_type);
109 mc_avg(band->buf + offs, band->ref_buf + ref_offs,
865 src = band->ref_buf + tile->ypos * band->pitch + tile->xpos;
941 band->ref_buf = band->bufs[ctx->b_ref_buf];
942 band->b_ref_buf = band->bufs[ctx->ref_buf];
944 band->ref_buf = band->bufs[ctx->ref_buf];
H A Dindeo4.c648 FFSWAP(int, ctx->dst_buf, ctx->ref_buf);
650 FFSWAP(int, ctx->ref_buf, ctx->b_ref_buf);
651 FFSWAP(int, ctx->dst_buf, ctx->ref_buf);
687 ctx->ref_buf = 1;
H A Dindeo5.c599 ctx->ref_buf = ctx->buf_switch ^ 1;
607 ctx->ref_buf = ctx->ref2_buf;
620 ctx->ref_buf = ctx->buf_switch ^ 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dgsmdec_data.h34 int16_t ref_buf[280]; member in struct:__anon1913
H A Divi_dsp.h171 * @param[in] ref_buf pointer to the corresponding block in the reference frame
175 void ff_ivi_mc_8x8_delta(int16_t *buf, const int16_t *ref_buf, uint32_t pitch, int mc_type);
181 * @param[in] ref_buf pointer to the corresponding block in the reference frame
185 void ff_ivi_mc_4x4_delta(int16_t *buf, const int16_t *ref_buf, uint32_t pitch, int mc_type);
191 * @param[in] ref_buf pointer to the corresponding block in the reference frame
195 void ff_ivi_mc_8x8_no_delta(int16_t *buf, const int16_t *ref_buf, uint32_t pitch, int mc_type);
201 * @param[in] ref_buf pointer to the corresponding block in the reference frame
205 void ff_ivi_mc_4x4_no_delta(int16_t *buf, const int16_t *ref_buf, uint32_t pitch, int mc_type);
H A Dgsmdec_template.c125 int16_t *ref_dst = ctx->ref_buf + 120;
145 memcpy(ctx->ref_buf, ctx->ref_buf + 160, 120 * sizeof(*ctx->ref_buf));
146 short_term_synth(ctx, samples, ctx->ref_buf + 120);
H A Divi_dsp.c574 void ff_ivi_mc_ ## size ##x## size ## suffix (int16_t *buf, const int16_t *ref_buf, \
582 for (i = 0; i < size; i++, buf += pitch, ref_buf += pitch) { \
584 OP(buf[j], ref_buf[j]); \
589 for (i = 0; i < size; i++, buf += pitch, ref_buf += pitch) \
591 OP(buf[j], (ref_buf[j] + ref_buf[j+1]) >> 1); \
594 wptr = ref_buf + pitch; \
595 for (i = 0; i < size; i++, buf += pitch, wptr += pitch, ref_buf += pitch) \
597 OP(buf[j], (ref_buf[j] + wptr[j]) >> 1); \
600 wptr = ref_buf
[all...]
H A Divi_common.h142 int16_t *ref_buf; ///< pointer to the reference frame buffer (for motion compensation) member in struct:__anon1936
222 int ref_buf; ///< inter frame reference buffer index member in struct:IVI45DecContext
H A Divi_common.c42 typedef void (*ivi_mc_func) (int16_t *buf, const int16_t *ref_buf,
477 band->ref_buf + buf_offs + mv_y * band->pitch + mv_x,
489 band->ref_buf + buf_offs + mv_y * band->pitch + mv_x,
594 band->ref_buf + offs + mv_y * band->pitch + mv_x,
600 src = band->ref_buf + tile->ypos * band->pitch + tile->xpos;
687 band->ref_buf = band->bufs[ctx->ref_buf];
H A Dindeo5.c554 ctx->ref_buf = ctx->buf_switch ^ 1;
562 ctx->ref_buf = ctx->ref2_buf;
575 ctx->ref_buf = ctx->buf_switch ^ 1;
H A Dindeo4.c545 ctx->ref_buf = ctx->buf_switch ^ 1;
557 ctx->ref_buf = ctx->buf_switch ^ 1;

Completed in 173 milliseconds