| 264 | } |
| 265 | |
| 266 | static int srt_encode_frame(AVCodecContext *avctx, |
| 267 | unsigned char *buf, int bufsize, const AVSubtitle *sub) |
| 268 | { |
| 269 | return encode_frame(avctx, buf, bufsize, sub, &srt_callbacks); |
| 270 | } |
| 271 | |
| 272 | static int text_encode_frame(AVCodecContext *avctx, |
| 273 | unsigned char *buf, int bufsize, const AVSubtitle *sub) |
nothing calls this directly
no test coverage detected