| 188 | } |
| 189 | |
| 190 | void av_bsf_flush(AVBSFContext *ctx) |
| 191 | { |
| 192 | FFBSFContext *const bsfi = ffbsfcontext(ctx); |
| 193 | |
| 194 | bsfi->eof = 0; |
| 195 | |
| 196 | av_packet_unref(bsfi->buffer_pkt); |
| 197 | |
| 198 | if (ff_bsf(ctx->filter)->flush) |
| 199 | ff_bsf(ctx->filter)->flush(ctx); |
| 200 | } |
| 201 | |
| 202 | int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt) |
| 203 | { |
no test coverage detected