| 1562 | |
| 1563 | |
| 1564 | static int write_frame(FlacEncodeContext *s, AVPacket *avpkt) |
| 1565 | { |
| 1566 | init_put_bits(&s->pb, avpkt->data, avpkt->size); |
| 1567 | write_frame_header(s); |
| 1568 | write_subframes(s); |
| 1569 | write_frame_footer(s); |
| 1570 | return put_bytes_output(&s->pb); |
| 1571 | } |
| 1572 | |
| 1573 | |
| 1574 | static int update_md5_sum(FlacEncodeContext *s, const void *samples) |
no test coverage detected