| 26 | #include "libavutil/avassert.h" |
| 27 | |
| 28 | av_cold void ff_af_queue_init(AVCodecContext *avctx, AudioFrameQueue *afq) |
| 29 | { |
| 30 | afq->avctx = avctx; |
| 31 | afq->remaining_delay = avctx->initial_padding; |
| 32 | afq->remaining_samples = avctx->initial_padding; |
| 33 | afq->frame_count = 0; |
| 34 | } |
| 35 | |
| 36 | av_cold void ff_af_queue_close(AudioFrameQueue *afq) |
| 37 | { |
no outgoing calls
no test coverage detected