HomeSort by relevance Sort by last modified time
    Searched refs:dst_buf (Results 1 - 4 of 4) sorted by null

  /external/libvpx/
y4minput.h 52 unsigned char *dst_buf; member in struct:y4m_input
y4minput.c 811 _y4m->dst_buf=(unsigned char *)malloc(_y4m->dst_buf_sz);
817 free(_y4m->dst_buf);
847 if(fread(_y4m->dst_buf,1,_y4m->dst_buf_read_sz,_fin)!=_y4m->dst_buf_read_sz){
857 (*_y4m->convert)(_y4m,_y4m->dst_buf,_y4m->aux_buf);
877 _img->planes[PLANE_Y]=_y4m->dst_buf;
878 _img->planes[PLANE_U]=_y4m->dst_buf+pic_sz;
879 _img->planes[PLANE_V]=_y4m->dst_buf+pic_sz+c_sz;
  /external/libvpx/vpx/src/
vpx_encoder.c 168 char *dst_buf = ctx->priv->enc.cx_data_dst_buf.buf; local
170 if (dst_buf
171 && pkt->data.raw.buf != dst_buf
179 memcpy(dst_buf + ctx->priv->enc.cx_data_pad_before,
182 modified_pkt->data.raw.buf = dst_buf;
188 if (dst_buf == pkt->data.raw.buf)
190 ctx->priv->enc.cx_data_dst_buf.buf = dst_buf + pkt->data.raw.sz;
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_rate.c 69 int16_t *dst_buf; member in struct:_snd_pcm_rate
308 free(rate->dst_buf);
309 rate->dst_buf = malloc(channels * rate->info.out.period_size * 2);
310 if (! rate->src_buf || ! rate->dst_buf)
339 free(rate->dst_buf);
340 rate->src_buf = rate->dst_buf = NULL;
514 if (! rate->dst_buf)
517 dst = rate->dst_buf;
519 if (dst == rate->dst_buf)
520 convert_from_s16(rate, rate->dst_buf, dst_areas, dst_offset
    [all...]

Completed in 80 milliseconds