westwood_vqa: set video stream duration

Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
Paul B Mahol 2012-03-20 22:26:41 +00:00 committed by Ronald S. Bultje
parent 98df2e2414
commit f0a343f399
1 changed files with 2 additions and 0 deletions

View File

@ -109,6 +109,8 @@ static int wsvqa_read_header(AVFormatContext *s)
st->codec->width = AV_RL16(&header[6]);
st->codec->height = AV_RL16(&header[8]);
fps = header[12];
st->nb_frames =
st->duration = AV_RL16(&header[4]);
if (fps < 1 || fps > 30) {
av_log(s, AV_LOG_ERROR, "invalid fps: %d\n", fps);
return AVERROR_INVALIDDATA;