Lines Matching defs:src
51 static void ref_from_h264pic(H264Ref *dst, H264Picture *src)
53 memcpy(dst->data, src->f->data, sizeof(dst->data));
54 memcpy(dst->linesize, src->f->linesize, sizeof(dst->linesize));
55 dst->reference = src->reference;
56 dst->poc = src->poc;
57 dst->pic_id = src->pic_id;
58 dst->parent = src;
61 static int split_field_copy(H264Ref *dest, H264Picture *src, int parity, int id_add)
63 int match = !!(src->reference & parity);
66 ref_from_h264pic(dest, src);
103 static int add_sorted(H264Picture **sorted, H264Picture * const *src,
113 const int poc = src[i]->poc;
116 sorted[out_i] = src[i];