| 157 | } |
| 158 | |
| 159 | static void write_chunk_header2(AVFormatContext *s, const ff_asf_guid *guid, int stream_id) |
| 160 | { |
| 161 | WtvContext *wctx = s->priv_data; |
| 162 | AVIOContext *pb = s->pb; |
| 163 | |
| 164 | int64_t last_chunk_pos = wctx->last_chunk_pos; |
| 165 | write_chunk_header(s, guid, 0, stream_id); // length updated later |
| 166 | avio_wl64(pb, last_chunk_pos); |
| 167 | } |
| 168 | |
| 169 | static void finish_chunk_noindex(AVFormatContext *s) |
| 170 | { |
no test coverage detected