mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
wv: do not report invalid stream duration
If total number of samples is -1 it means stream is of unknown length. Fixes ticket #1777. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
dd5aff001e
commit
039341eb43
@ -255,7 +255,8 @@ static int wv_read_header(AVFormatContext *s)
|
||||
st->codec->bits_per_coded_sample = wc->bpp;
|
||||
avpriv_set_pts_info(st, 64, 1, wc->rate);
|
||||
st->start_time = 0;
|
||||
st->duration = wc->samples;
|
||||
if (wc->samples != 0xFFFFFFFFu)
|
||||
st->duration = wc->samples;
|
||||
|
||||
if (s->pb->seekable) {
|
||||
int64_t cur = avio_tell(s->pb);
|
||||
|
Loading…
Reference in New Issue
Block a user