Lines Matching defs:parent
776 static int encode_subband_c0run(SnowContext *s, SubBand *b, const IDWTELEM *src, const IDWTELEM *parent, int stride, int orientation){
809 if(parent){
812 if(px<b->parent->width && py<b->parent->height)
813 p= parent[px + py*2*stride];
860 if(parent){
863 if(px<b->parent->width && py<b->parent->height)
864 p= parent[px + py*2*stride];
896 static int encode_subband(SnowContext *s, SubBand *b, const IDWTELEM *src, const IDWTELEM *parent, int stride, int orientation){
897 // encode_subband_qtree(s, b, src, parent, stride, orientation);
898 // encode_subband_z0run(s, b, src, parent, stride, orientation);
899 return encode_subband_c0run(s, b, src, parent, stride, orientation);
900 // encode_subband_dzr(s, b, src, parent, stride, orientation);
1794 encode_subband(s, b, b->ibuf, b->parent ? b->parent->ibuf : NULL, b->stride, orientation);
1795 av_assert0(b->parent==NULL || b->parent->stride == b->stride*2);