MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / write_chunk_header2

Function write_chunk_header2

libavformat/wtvenc.c:159–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159static 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
169static void finish_chunk_noindex(AVFormatContext *s)
170{

Callers 3

write_indexFunction · 0.85
write_stream_codecFunction · 0.85
write_stream_dataFunction · 0.85

Calls 2

avio_wl64Function · 0.85
write_chunk_headerFunction · 0.70

Tested by

no test coverage detected