Searched refs:temp_stride (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/libmpcodecs/
H A Dvf_uspp.c108 int temp_stride[3]; member in struct:vf_priv_s
150 int stride= p->temp_stride[i];
193 p->temp[0][ x + y*p->temp_stride[0] ] += p->frame_dec->data[0][ x + y*p->frame_dec->linesize[0] + offset ];
199 p->temp[1][ x + y*p->temp_stride[1] ] += p->frame_dec->data[1][ x + y*p->frame_dec->linesize[1] + offset ];
200 p->temp[2][ x + y*p->temp_stride[2] ] += p->frame_dec->data[2][ x + y*p->frame_dec->linesize[2] + offset ];
209 store_slice_c(dst[j], p->temp[j], dst_stride[j], p->temp_stride[j], width>>is_chroma, height>>is_chroma, 8-p->log2_count);
224 vf->priv->temp_stride[i]= w;
225 vf->priv->temp[i]= malloc(vf->priv->temp_stride[i]*h*sizeof(int16_t));
226 vf->priv->src [i]= malloc(vf->priv->temp_stride[i]*h*sizeof(uint8_t));
H A Dvf_pp7.c63 int temp_stride; member in struct:vf_priv_s
287 const int stride= is_luma ? p->temp_stride : ((width+16+15)&(~15));
352 vf->priv->temp_stride= (width+16+15)&(~15);
353 vf->priv->src = av_malloc(vf->priv->temp_stride*(h+8)*sizeof(uint8_t));
H A Dvf_fspp.c94 int temp_stride; member in struct:vf_priv_s
416 const int stride= is_luma ? p->temp_stride : (width+16);//((width+16+15)&(~15))
496 vf->priv->temp_stride= (width+16+15)&(~15);
497 vf->priv->temp= (int16_t*)av_mallocz(vf->priv->temp_stride*3*8*sizeof(int16_t));
499 vf->priv->src = (uint8_t*)av_malloc(vf->priv->temp_stride*h*sizeof(uint8_t));

Completed in 103 milliseconds