Lines Matching defs:bytestream
41 uint8_t *bytestream, *bytestream_start, *bytestream_end;
51 bytestream = pkt->data;
114 snprintf(bytestream, bytestream_end - bytestream,
116 bytestream += strlen(bytestream);
121 snprintf(bytestream, bytestream_end - bytestream,
124 bytestream += strlen(bytestream);
131 snprintf(bytestream, bytestream_end - bytestream,
133 bytestream += strlen(bytestream);
144 AV_WN32(bytestream + 0, av_float2int(r[j]));
145 AV_WN32(bytestream + 4, av_float2int(g[j]));
146 AV_WN32(bytestream + 8, av_float2int(b[j]));
147 bytestream += 12;
160 AV_WN32(bytestream, av_float2int(g[j]));
161 bytestream += 4;
173 AV_WN16(bytestream + 0, float2half(av_float2int(r[j]), s->basetable, s->shifttable));
174 AV_WN16(bytestream + 2, float2half(av_float2int(g[j]), s->basetable, s->shifttable));
175 AV_WN16(bytestream + 4, float2half(av_float2int(b[j]), s->basetable, s->shifttable));
176 bytestream += 6;
188 AV_WN16(bytestream, float2half(av_float2int(g[j]), s->basetable, s->shifttable));
189 bytestream += 2;
198 memcpy(bytestream, ptr, n);
199 bytestream += n;
210 memcpy(bytestream, ptr1, n);
211 bytestream += n;
212 memcpy(bytestream, ptr2, n);
213 bytestream += n;
218 av_shrink_packet(pkt, bytestream - bytestream_start);