Lines Matching defs:copy
17 * You should have received a copy of the GNU Lesser General Public
2367 /* copy data while rewriting timestamps */
2960 int pktsize, pkttype, copy;
2979 copy = FFMIN(RTMP_HEADER - rt->flv_header_bytes, size_temp);
2980 bytestream_get_buffer(&buf_temp, rt->flv_header + rt->flv_header_bytes, copy);
2981 rt->flv_header_bytes += copy;
2982 size_temp -= copy;
3017 copy = FFMIN(rt->flv_size - rt->flv_off, size_temp);
3018 bytestream_get_buffer(&buf_temp, rt->flv_data + rt->flv_off, copy);
3019 rt->flv_off += copy;
3020 size_temp -= copy;