Searched refs:delay_pos (Results 1 - 2 of 2) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | af_aphaser.c | 48 int delay_pos, modulation_pos; member 93 int i, c, delay_pos, modulation_pos; \ 102 delay_pos = s->delay_pos; \ 107 MOD(delay_pos + s->modulation_buffer[ \ 113 delay_pos = MOD(delay_pos + 1, s->delay_buffer_length); \ 114 buffer[delay_pos] = v; \ 120 s->delay_pos = delay_pos; \ [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | gif.c | 112 int delay_pos; in gif_write_packet() local 144 delay_pos = gif_parse_packet(s, pkt->data + off, pkt->size - off); in gif_write_packet() 145 if (delay_pos > 0 && delay_pos < pkt->size - off - 2) { in gif_write_packet() 146 avio_write(pb, pkt->data + off, delay_pos); in gif_write_packet() 148 avio_write(pb, pkt->data + off + delay_pos + 2, pkt->size - off - delay_pos - 2); in gif_write_packet() 153 int delay_pos = gif_parse_packet(s, pkt->data, pkt->size); in gif_write_packet() local 155 if (delay_pos > 0 && delay_pos < pk in gif_write_packet() [all...] |
Completed in 2 milliseconds