mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
smoothstreamingenc: Check the output UrlContext before accessing it
This code can be called with a NULL UrlContext if writing of the trailer involves seeking. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
d3a72becc6
commit
eb2f391018
@ -108,7 +108,8 @@ static int64_t ism_seek(void *opaque, int64_t offset, int whence)
|
||||
os->tail_out = NULL;
|
||||
}
|
||||
if (offset >= os->cur_start_pos) {
|
||||
ffurl_seek(os->out, offset - os->cur_start_pos, SEEK_SET);
|
||||
if (os->out)
|
||||
ffurl_seek(os->out, offset - os->cur_start_pos, SEEK_SET);
|
||||
os->cur_pos = offset;
|
||||
return offset;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user