| 1414 | } |
| 1415 | |
| 1416 | int av_write_uncoded_frame(AVFormatContext *s, int stream_index, |
| 1417 | AVFrame *frame) |
| 1418 | { |
| 1419 | return write_uncoded_frame_internal(s, stream_index, frame, 0); |
| 1420 | } |
| 1421 | |
| 1422 | int av_interleaved_write_uncoded_frame(AVFormatContext *s, int stream_index, |
| 1423 | AVFrame *frame) |
nothing calls this directly
no test coverage detected