| 270 | } |
| 271 | |
| 272 | static int text_encode_frame(AVCodecContext *avctx, |
| 273 | unsigned char *buf, int bufsize, const AVSubtitle *sub) |
| 274 | { |
| 275 | return encode_frame(avctx, buf, bufsize, sub, &text_callbacks); |
| 276 | } |
| 277 | |
| 278 | static av_cold int srt_encode_close(AVCodecContext *avctx) |
| 279 | { |
nothing calls this directly
no test coverage detected