Lines Matching refs:vstream
56 AVStream *vstream;
61 vstream = avformat_new_stream(s, NULL);
62 if (!vstream)
84 vstream->codecpar->width = avio_rl32(pb);
85 vstream->codecpar->height = avio_rl32(pb);
89 ret = ff_get_extradata(s, vstream->codecpar, pb, 768);
100 avpriv_set_pts_info(vstream, 32, 1, fps);
101 vstream->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
102 vstream->codecpar->codec_id = AV_CODEC_ID_BFI;
103 vstream->codecpar->format = AV_PIX_FMT_PAL8;
104 vstream->nb_frames =
105 vstream->duration = bfi->nframes;